コード例 #1
0
ファイル: Database.php プロジェクト: hamaco/phwittr-on-xoops
 /**
  * @param string $name
  *
  * @return string
  */
 public function name($name = null)
 {
     if ($name !== null) {
         $this->contents = false;
     }
     return parent::name($name);
 }
コード例 #2
0
ファイル: Object.php プロジェクト: reoring/sabel
 public function rendering(Sabel_View_Location $location, array $assigns = array())
 {
     return $this->renderer->rendering($location->getContents(), $assigns, $location->getPath());
 }