コード例 #1
0
ファイル: Block.php プロジェクト: ffuenf/EasyTemplate
 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('easytemplate/input/renderer/select.phtml');
 }
コード例 #2
0
ファイル: Datepicker.php プロジェクト: ffuenf/EasyTemplate
 public function getValue()
 {
     $value = parent::getValue();
     return strftime($this->getDateStrFormat(), strtotime($value));
 }