Exemplo n.º 1
0
 function printTag()
 {
     // The Oralux logo is a link towards the home page.
     // This is true for any page except the homepage.
     $START_ANCHOR_TAG = "";
     $END_ANCHOR_TAG = "";
     if ($this->_myEntry != "Home") {
         $START_ANCHOR_TAG = "<a href=\"index.php\">";
         $END_ANCHOR_TAG = "</a>";
     }
     include GetTranslatedFile("htm/header.htm");
     $this->_myNav->printTag();
 }
Exemplo n.º 2
0
 function printTag()
 {
     $TITLE = $this->_myTitle;
     $DATE = $this->_myDate;
     include GetTranslatedFile("htm/head.htm");
     // Adding the supplied style sheets
     if (null != $this->_myStyles) {
         foreach ($this->_myStyles as $STYLE) {
             include "htm/head2.htm";
             // No translated file for head2
         }
     }
 }
Exemplo n.º 3
0
 function printTag($theHtmlBody)
 {
     // Printing the web page
     // First, doctype!
     $this->_mydocType->printTag();
     $lang = $this->_myLanguage == null ? getLang() : $this->_myLanguage;
     echo "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"{$lang}\" lang=\"{$lang}\">\n";
     echo "<head>\n";
     $this->_myHtmlHead->printTag();
     echo "</head>\n";
     echo "<body id=\"oralux-org\">\n";
     $this->_myHeader->printTag();
     include GetTranslatedFile($theHtmlBody, $lang);
     $this->_myFooter->printTag();
     echo "</body>\n";
     echo "</html>\n";
 }
Exemplo n.º 4
0
 function printTag()
 {
     include GetTranslatedFile("htm/footer.htm");
 }
Exemplo n.º 5
0
 function printTag($theHtmlBody)
 {
     // Printing the web page
     // First, doctype!
     $this->_mydocType->printTag();
     $lang = getLang();
     echo "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"{$lang}\" lang=\"{$lang}\">\n";
     echo "<head>\n";
     $this->_myHtmlHead->printTag();
     echo "</head>\n";
     echo "<body id=\"oralux-org\">\n";
     $this->_myHeader->printTag();
     if (!empty($this->_myForm)) {
         $FORM =& $this->_myForm;
     }
     if (!empty($this->_myData)) {
         $DATA =& $this->_myData;
     }
     include GetTranslatedFile($theHtmlBody);
     $this->_myFooter->printTag();
     echo "</body>\n";
     echo "</html>\n";
 }
Exemplo n.º 6
0
 function printTag()
 {
     global $TheTitleTranslation;
     include GetTranslatedFile("htm/nav.htm");
 }