コード例 #1
0
ファイル: Form.php プロジェクト: alexanderTsig/arabic
 public function __construct($name = null, $attributes = null, $dontInitMce = null)
 {
     if ($attributes === null) {
         $attributes = array('rows' => 10);
     }
     $attributes = (array) $attributes;
     $attributes['class'] = 'row-wide el-wide';
     $this->dontInitMce = $dontInitMce;
     parent::__construct($name, $attributes, null);
 }
コード例 #2
0
ファイル: Form.php プロジェクト: subashemphasize/test_site
 public function __construct($name = null, $attributes = null, $dontInitMce = null)
 {
     if ($attributes === null) {
         $attributes = array('rows' => 10);
     }
     $attributes = (array) $attributes;
     $attributes['class'] = 'no-label';
     $attributes['style'] = 'width: 95%';
     $this->dontInitMce = $dontInitMce;
     parent::__construct($name, $attributes, null);
 }