Ejemplo n.º 1
0
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     global $lng;
     parent::__construct($a_title, $a_postvar);
     $this->setType("file");
     $this->setHiddenTitle("(" . $lng->txt("form_file_input") . ")");
 }
Ejemplo n.º 2
0
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setInputType("text");
     $this->setType("text");
     $this->validationRegexp = "";
 }
 /**
  * Constructor
  *
  * @param
  */
 function __construct($a_title = "", $a_id = "", $a_disable_escaping = false)
 {
     parent::__construct($a_title, $a_id);
     $this->setTitle($a_title);
     $this->setType("non_editable_value");
     $this->disable_escaping = (bool) $a_disable_escaping;
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setType("checkbox");
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setRetype(true);
     $this->setSkipSyntaxCheck(false);
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setRequired(true);
 }
Ejemplo n.º 7
0
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setType("datetime");
     $this->setMode(self::MODE_SELECT);
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setType("textarea");
     $this->setRteTagSet("standard");
     $this->plugins = array();
     $this->removeplugins = array();
     $this->buttons = array();
     $this->rteSupport = array();
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 public function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->setType("dateduration");
 }
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
     $this->size = 6;
     $this->useUnits = TRUE;
 }
 /**
  * @param string $title
  * @param string $post_var
  * @param        $placeholder
  */
 public function __construct($title, $post_var, $placeholder)
 {
     parent::__construct($title, $post_var);
     $this->placeholder = $placeholder;
     $this->pl = ilUserDefaultsPlugin::getInstance();
 }
Ejemplo n.º 12
0
 /**
  * Constructor
  *
  * @param	string	$a_title	Title
  * @param	string	$a_postvar	Post Variable
  */
 function __construct($a_title = "", $a_postvar = "")
 {
     parent::__construct($a_title, $a_postvar);
 }