當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CInputWidget::__construct方法代碼示例

本文整理匯總了PHP中CInputWidget::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP CInputWidget::__construct方法的具體用法?PHP CInputWidget::__construct怎麽用?PHP CInputWidget::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CInputWidget的用法示例。


在下文中一共展示了CInputWidget::__construct方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     // default language
     if (isset(Yii::app()->language)) {
         $this->setLanguage(Yii::app()->language);
     } else {
         $this->setLanguage('en');
     }
 }
開發者ID:damnpoet,項目名稱:yiicart,代碼行數:10,代碼來源:YiiCKEditor.php

示例2: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     $_SESSION['KCFINDER']['disabled'] = false;
     // enables the file browser in the admin
     $_SESSION['KCFINDER']['uploadURL'] = Yii::app()->baseUrl . "/ckfinder/";
     // URL for the uploads folder
     $_SESSION['KCFINDER']['uploadDir'] = $_SERVER['DOCUMENT_ROOT'] . "/ckfinder/";
     // path to the uploads folder
     $this->setLanguage(Yii::app()->language);
 }
開發者ID:Wiedzal,項目名稱:narisuemvse,代碼行數:11,代碼來源:ECKEditor.php

示例3: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     //$this->setLanguage(Yii::app()->language);
 }
開發者ID:giangnh264,項目名稱:mobileplus,代碼行數:5,代碼來源:ETinyMce.php

示例4: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     $this->language = empty(Yii::app()->language) ? $this->language : Yii::app()->language;
 }
開發者ID:lhfcainiao,項目名稱:basic,代碼行數:5,代碼來源:CKEditor.php

示例5: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     $this->options['language'] = Yii::app()->language;
 }
開發者ID:balrok,項目名稱:aiajaya,代碼行數:5,代碼來源:CKEditor.php

示例6: __construct

 public function __construct($owner = null)
 {
     parent::__construct($owner);
     $this->setLanguage(Yii::app()->language);
     if (Yii::app()->theme) {
         $this->contentCSS = Yii::app()->baseUrl . '/css/template.css';
     }
 }
開發者ID:burt0n,項目名稱:yiimce,代碼行數:8,代碼來源:ETinyMce.php


注:本文中的CInputWidget::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。