Example #1
0
 public function __construct(\Icybee\ManageBlock $manager, $id, array $options = array())
 {
     parent::__construct($manager, $id, array('title' => 'Popularity', 'class' => 'pull-right', 'orderable' => true));
 }
Example #2
0
 public function __construct(\Icybee\Modules\Images\Albums\ManageBlock $manager, $id, array $options = array())
 {
     parent::__construct($manager, $id, $options + array('title' => 'Photos'));
 }
Example #3
0
 public function __construct(\Icybee\Modules\Users\ManageBlock $manager, $id, array $options = array())
 {
     parent::__construct($manager, $id, array('class' => 'pull-right cell-fitted', 'orderable' => true));
 }
Example #4
0
 public function __construct(\Icybee\ManageBlock $manager, $id, array $options = array())
 {
     parent::__construct($manager, $id, $options + array('discreet' => true));
 }
Example #5
0
 public function __construct(\Icybee\ManageBlock $manager, $id, array $options = [])
 {
     parent::__construct($manager, $id, $options + ['orderable' => false]);
 }
Example #6
0
 public function __construct(\Icybee\ManageBlock $manager, $id, array $options = array())
 {
     parent::__construct($manager, $id, array('orderable' => false));
 }
Example #7
0
 public function __construct(\Icybee\ManageBlock $manager, $id, array $options = [])
 {
     parent::__construct($manager, $id, $options + ['title' => 'User', 'orderable' => true]);
     $this->resolved_user_names = $this->resolve_user_names($manager->model);
 }