| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 <?php | 1 <?php |
| 2 | 2 |
| 3 class AnwTemplateOverride_action_view extends AnwTemplateDefault_action_view | 3 class AnwTemplateOverride_action_view extends AnwTemplateDefault_action_view |
| 4 { | 4 { |
| 5 function viewPage($sContentHtmlDir, $sCss, $title, $content, $editiontime, $ao Translations) | 5 function viewPage($sContentHtmlDir, $sCss, $title, $content, $editiontime, $ao Translations) |
| 6 { | 6 { |
| 7 $HTML = <<<EOF | 7 $HTML = <<<EOF |
| 8 | 8 |
| 9 {$this->pageTranslations($aoTranslations)} | |
| 10 | |
| 11 <div class="$sCss" dir="$sContentHtmlDir"> | 9 <div class="$sCss" dir="$sContentHtmlDir"> |
| 12 $content | 10 $content |
| 13 </div> | 11 </div> |
| 14 EOF; | 12 EOF; |
| 15 return $HTML; | 13 return $HTML; |
| 16 } | 14 } |
| 17 | |
| 18 function pageTranslations($aoTranslations) | |
| 19 { | |
| 20 return ""; | |
| 21 } | |
| 22 } | 15 } |
| 23 | 16 |
| 24 ?> | 17 ?> |
| LEFT | RIGHT |