예제 #1
0
파일: head.inc.php 프로젝트: beakid/md
 function _printChildren($sIndent = '')
 {
     if (null != $this->objXajax) {
         $this->objXajax->printJavascript();
     }
     xajaxControlContainer::_printChildren($sIndent);
 }
예제 #2
0
파일: doctype.inc.php 프로젝트: beakid/md
 function printHTML($sIndent = '')
 {
     if ('XHTML' == $this->sFormat) {
         print '<' . '?' . 'xml version="1.0"' . '?' . ">\n";
     }
     print $this->sTag;
     print "\n";
     xajaxControlContainer::_printChildren($sIndent);
 }