예제 #1
0
 /**
  * Constructor
  *
  * @access      public
  * @return      void
  */
 public function __construct()
 {
     parent::__construct();
     $parts = explode('_', $this->me->getName());
     $this->name = array_pop($parts);
 }
예제 #2
0
파일: Common.php 프로젝트: shupp/Framework
 /**
  * __construct
  *
  * @access public
  * @param object $module Instance of Framework_Module to be rendered
  * @return void
  * @see Framework_Presenter_Common::$module
  */
 public function __construct(Framework_Module $module)
 {
     parent::__construct();
     $this->module = $module;
 }