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


PHP Textarea::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct($name, $label, $options = null)
 {
     Asset::wysiwyg();
     parent::__construct($name, $label, $options);
     $this->setView('administr/form::textarea');
     $this->options['class'] = array_get($this->getOptions(), 'class') . ' administr-wysiwyg';
 }
開發者ID:administrcms,項目名稱:form,代碼行數:7,代碼來源:Wysiwyg.php

示例2: __construct

 /**
  * Constructor.
  *
  * @param string $name
  * @param string $pluginKey
  * @param array $buttons
  */
 public function __construct($name, $pluginKey = 'blog', array $buttons = array())
 {
     parent::__construct($name);
     $this->pluginKey = $pluginKey;
     $this->textFormatService = BOL_TextFormatService::getInstance();
     // init list of buttons
     if (!empty($buttons)) {
         $this->buttons = $buttons;
     }
     // remove image and video buttons
     if (!$this->textFormatService->isRichMediaAllowed()) {
         $imageIndex = array_search(BOL_TextFormatService::WS_BTN_IMAGE, $this->buttons);
         if ($imageIndex !== false) {
             unset($this->buttons[$imageIndex]);
         }
         $videoIndex = array_search(BOL_TextFormatService::WS_BTN_VIDEO, $this->buttons);
         if ($videoIndex !== false) {
             unset($this->buttons[$videoIndex]);
         }
     }
     $stringValidator = new StringValidator(0, 50000);
     $stringValidator->setErrorMessage(OW::getLanguage()->text('base', 'text_is_too_long', array('max_symbols_count' => 50000)));
     $this->addValidator($stringValidator);
 }
開發者ID:vBulleteen,項目名稱:oxwall,代碼行數:31,代碼來源:form_element.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->set('list', false);
     $this->data('module', 'format-code');
 }
開發者ID:oscarotero,項目名稱:folk,代碼行數:6,代碼來源:Code.php

示例4: __construct

 public function __construct($name)
 {
     parent::__construct($name);
     OW::getDocument()->addStyleSheet(OW::getPluginManager()->getPlugin('photo')->getStaticCssUrl() . 'edit_photo.css');
     OW::getDocument()->addScript(OW::getPluginManager()->getPlugin('photo')->getStaticJsUrl() . 'codemirror.min.js');
 }
開發者ID:tammyrocks,項目名稱:photo,代碼行數:6,代碼來源:hashtag_form_element.php


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