Esempio n. 1
0
 public function __construct($fieldName, $placeholder = null)
 {
     $this->placeholder = is_null($placeholder) ? ___('Click to Edit') : $placeholder;
     $this->fieldName = $fieldName;
     $this->decorator = new Am_Grid_Field_Decorator_LiveEdit($this);
     parent::__construct('live-edit-' . $fieldName, ___("Live Edit %s", ___(ucfirst($fieldName))));
 }
Esempio n. 2
0
File: Url.php Progetto: grlf/eyedock
 public function __construct($id, $title, $url)
 {
     $this->id = $id;
     $this->title = $title;
     $this->url = $url;
     parent::__construct();
 }
Esempio n. 3
0
 public function __construct($id, $title, $callback, $type = self::SINGLE)
 {
     $this->id = $id;
     $this->title = $title;
     $this->callback = $callback;
     $this->type = $type;
     parent::__construct();
 }
 public function __construct($id, $title)
 {
     $this->id = $id;
     $this->title = $title;
     parent::__construct();
     $this->setTarget('_top');
 }
 public function __construct($id = null, $title = null)
 {
     $this->title = ___("Upload");
     parent::__construct($id, $title);
 }
 public function __construct($id = null, $title = null)
 {
     $this->title = ___("Repeat Action Handling");
     parent::__construct($id, $title);
     $this->setTarget('_top');
 }
Esempio n. 7
0
 public function __construct($id = null, $title = null)
 {
     $this->title = ___("Delete %s");
     $this->attributes['data-confirm'] = ___("Do you really want to delete record?");
     parent::__construct($id, $title);
 }
Esempio n. 8
0
 public function __construct($id = null, $title = null)
 {
     $this->title = ___('Submit New Ticket');
     parent::__construct($id, $title);
 }
Esempio n. 9
0
 public function __construct($id = null, $title = null)
 {
     $this->title = ___('New %s');
     parent::__construct($id, $title);
 }
Esempio n. 10
0
 public function __construct($id = null, $title = null)
 {
     $this->title = ___('Resend Email');
     parent::__construct($id, $title);
     $this->setTarget('_top');
 }
Esempio n. 11
0
 public function __construct($fieldName)
 {
     $this->fieldName = $fieldName;
     parent::__construct('live-checkbox-' . $fieldName, ___("Live Edit %s", ___(ucfirst($fieldName))));
 }
Esempio n. 12
0
 function __construct($id = null, $title = null, User $reseller)
 {
     parent::__construct($id, $title);
     $this->reseller = $reseller;
 }
Esempio n. 13
0
 public function __construct($id = null, $title = null)
 {
     parent::__construct($id, ___('Subscribe all available users'));
 }
Esempio n. 14
0
 public function __construct($id = null, $title = null)
 {
     $this->title = ___("Void");
     $this->attributes['data-confirm'] = ___("Do you really want to void commission?");
     parent::__construct($id, $title);
 }
 public function __construct()
 {
     parent::__construct();
     $this->setTarget('_top');
 }
Esempio n. 16
0
 function __construct($id, $title)
 {
     parent::__construct($id, $title, null);
     $this->attributes['target'] = '_top';
 }
Esempio n. 17
0
 public function __construct($id = null, $title = null)
 {
     $this->confirmationText = ___("Do you really want to %s %s %s records");
     parent::__construct($id, $title);
 }
Esempio n. 18
0
 public function __construct($id = null, $archive = true)
 {
     $this->archive = (bool) $archive;
     $this->title = $archive ? ___("Delete %s") : ___("Restore %s");
     $this->attributes['data-confirm'] = $archive ? ___("Do you really want to delete product?") : ___("Do you really want to restore product?");
     parent::__construct($id);
 }
Esempio n. 19
0
 public function __construct($id = null, $title = null)
 {
     parent::__construct('export', ___('Export'));
 }