예제 #1
0
 function __construct($iYear, $iMonth, $oSites)
 {
     parent::__construct($iYear, $iMonth);
     $this->_oDb = $oSites->_oDb;
     $this->_oTemplate = $oSites->_oTemplate;
     $this->_oConfig = $oSites->_oConfig;
 }
예제 #2
0
 function __construct($iYear, $iMonth, &$oDb, &$oConfig)
 {
     parent::__construct($iYear, $iMonth);
     $this->_oDb =& $oDb;
     $this->_oConfig =& $oConfig;
     $this->sCssPrefix = '';
 }
예제 #3
0
 function __construct($iYear, $iMonth, &$oDb, &$oTemplate, &$oConfig)
 {
     parent::__construct($iYear, $iMonth);
     $this->oDb =& $oDb;
     $this->oTemplate =& $oTemplate;
     $this->oConfig =& $oConfig;
 }
 function __construct($iYear, $iMonth)
 {
     parent::__construct($iYear, $iMonth);
 }
예제 #5
0
 function __construct($iYear, $iMonth, &$oModule)
 {
     parent::__construct($iYear, $iMonth);
     $this->oBlogsModule =& $oModule;
 }