]> git.andy128k.dev Git - ipf.git/commitdiff
remove unused options
authorAndrey Kutejko <andy128k@gmail.com>
Sun, 14 Dec 2014 04:34:16 +0000 (06:34 +0200)
committerAndrey Kutejko <andy128k@gmail.com>
Sun, 14 Dec 2014 04:34:16 +0000 (06:34 +0200)
ipf/form/widget/htmlinput.php

index 3b390d91d784ef40af810b2d5d16c8195be7fd78..e872198b63b15839f48543b5deb2fa5bae295499 100644 (file)
@@ -5,9 +5,6 @@ use \PFF\HtmlBuilder\Tag as Tag;
 class IPF_Form_Widget_HTMLInput extends IPF_Form_Widget
 {
     public $tinymce_url;
-    public $mode;
-    public $theme;
-    public $include_tinymce;
     public $force_absolute_urls;
     public $editor_config;
 
@@ -17,9 +14,6 @@ class IPF_Form_Widget_HTMLInput extends IPF_Form_Widget
             IPF::get('tiny_mce_url',
             IPF::get('static_url').'admin/tinymce/'));
 
-        $this->mode                 = \PFF\Arr::pop($attrs, 'mode',                 'textareas');
-        $this->theme                = \PFF\Arr::pop($attrs, 'theme',                'simple');
-        $this->include_tinymce      = \PFF\Arr::pop($attrs, 'include_tinymce',      true);
         $this->force_absolute_urls  = \PFF\Arr::pop($attrs, 'force_absolute_urls',  false);
         $this->editor_config        = \PFF\Arr::pop($attrs, 'editor_config',        array());