当前位置: 首页>>代码示例>>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;未经允许,请勿转载。