/**
  * __construct 
  * 
  * @param string $form nom du formulaire
  * @access public
  * @return void
  */
 public function __construct($form)
 {
     parent::__construct($form);
     $this->type = 'Button';
 }
 public function __construct($form, $objID)
 {
     parent::__construct($form);
     $this->type = 'Inline';
     $this->objID = $objID;
 }
 /**
  * __construct 
  * 
  * @param string $form 
  * @access public
  * @return void
  */
 public function __construct($form)
 {
     parent::__construct($form);
     $this->type = 'Glyph';
 }
 /**
  * __construct 
  * 
  * @param string $form nom du formulaire
  * @access public
  * @return void
  */
 public function __construct($form)
 {
     parent::__construct($form);
     $this->type = 'Select';
     $this->message = _('For selected items: ');
 }