コード例 #1
0
 public function renderPreClientScript()
 {
     $return = '';
     $return .= parent::renderPreClientScript();
     return $return;
 }
コード例 #2
0
 public function renderPreClientScript()
 {
     $return = '';
     if (!isRendered('atUI.js')) {
         if ($this->cssPath) {
             $return .= '<link rel="Stylesheet" type="text/css" href="' . $this->cssPath . '" />' . "\n";
         }
         $return .= '<script type="text/javascript" src="' . $this->jsPath . '"></script>' . "\n";
         renderOnce('atUI.js');
     }
     $return .= parent::renderPreClientScript();
     return $return;
 }