예제 #1
0
 public function __construct($field, $title, $sortable = true, $align = null, $renderFunc = null, $width = null)
 {
     parent::__construct($field, $title, $sortable, $align, $renderFunc, $width);
     $this->setFormatFunction(array($this, '_format'));
 }
예제 #2
0
 public function __construct($field = '_', $title = null, $sortable = true, $align = null, $renderFunc = null, $width = null)
 {
     parent::__construct('_', ___("Actions"), false);
 }
예제 #3
0
파일: Expandable.php 프로젝트: grlf/eyedock
 public function __construct($field, $title, $sortable = false, $align = null, $renderFunc = null, $width = null)
 {
     $this->setGetFunction(array($this, 'expandableGet'));
     parent::__construct($field, $title, $sortable, $align, $renderFunc, $width);
 }
예제 #4
0
파일: IsDisabled.php 프로젝트: grlf/eyedock
 public function __construct($field = 'is_disabled', $title = null, $sortable = true, $align = null, $renderFunc = null, $width = null)
 {
     parent::__construct($field, is_null($title) ? ___('Is Disabled?') : $title, $sortable, $align, $renderFunc, $width);
 }
예제 #5
0
파일: Abstract.php 프로젝트: grlf/eyedock
 public function __construct($field = '_', $title = null, $sortable = true, $align = null, $renderFunc = null, $width = null)
 {
     parent::__construct($field, '', false);
     $this->addDecorator(new Am_Grid_Field_Decorator_Sort());
 }
예제 #6
0
파일: Enum.php 프로젝트: grlf/eyedock
 public function __construct($field, $title, $sortable = false, $align = null, $renderFunc = null, $width = null)
 {
     parent::__construct($field, $title, $sortable, $align, $renderFunc, $width);
 }