Example #1
0
File: Html.php Project: kstep/pnut
 public function setTemplate($filename)
 {
     if (strpos($filename, '.') === false) {
         $filename .= '.phtml';
     }
     parent::setTemplate($filename);
 }
Example #2
0
File: Image.php Project: kstep/pnut
 /**
  * load image from file.
  * @param string filename
  * @return void
  */
 public function setTemplate($filename)
 {
     parent::setTemplate($filename);
     $this->_resource = $this->loadImage($this->_filename);
 }