示例#1
0
<?php

namespace XLite\View;

/**
 * Abstract widget
 */
abstract class AView extends \XLite\Module\XC\ThemeTweaker\View\AView
{
}
// Call static constructor
\XLite\View\AView::__constructStatic();
示例#2
0
 /**
  * So called "static constructor".
  * NOTE: do not call the "parent::__constructStatic()" explicitly: it will be called automatically
  *
  * @return void
  */
 public static function __constructStatic()
 {
     parent::__constructStatic();
     static::$profilerInfo = array('isEnabled' => \XLite\Module\XC\WebmasterKit\Core\Profiler::isTemplatesProfilingEnabled(), 'markTemplates' => \XLite\Module\XC\WebmasterKit\Core\Profiler::markTemplatesEnabled(), 'countDeep' => 0, 'countLevel' => 0);
 }