本文整理汇总了PHP中Base::output方法的典型用法代码示例。如果您正苦于以下问题:PHP Base::output方法的具体用法?PHP Base::output怎么用?PHP Base::output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Base
的用法示例。
在下文中一共展示了Base::output方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output
protected function output()
{
parent::output();
// TODO: Change the autogenerated stub
$this->page = $this->render(TEMPLATE . 'registration', array('title' => $this->title, 'country' => $this->country, 'city' => $this->city));
return $this->page;
}
示例2: output
protected function output()
{
parent::output();
// TODO: Change the autogenerated stub
$this->page = $this->render(TEMPLATE . 'myprofile', array('profile' => $this->profile, 'want' => $this->want));
// TODO: Change the autogenerated stub
return $this->page;
}
示例3: output
protected function output()
{
$previous = FALSE;
if ($this->type && $this->id) {
$previous = "/" . $this->type . "/" . $this->id;
}
$this->content = $this->render(VIEW . 'catalog_page', array('catalog' => $this->catalog, 'navigation' => $this->navigation, 'previous' => $previous, 'krohi' => $this->krohi));
$this->page = parent::output();
return $this->page;
}
示例4: output
protected function output()
{
$this->content = $this->render(TEMPLATE . 'content/about_content');
$this->page = parent::output();
// $this->page = $this->render(TEMPLATE.'about',array(
// 'title'=>$this->title,
// 'header'=>$this->header,
// 'footer'=>$this->footer,
// 'popup'=>$this->popup,
// 'i_user'=>$this->i_user,
// ));
}
示例5: error
function error($e)
{
$text = "ERROR<br><br>";
if ($e == "fileNotFound") {
$text .= "テンプレートファイルが見つかりません。(PC)<br><br>";
}
$this->tempData = array("{%text}" => $text);
$html_temp = "{%text}";
$html = Base::tempReplace($html_temp, $this->tempData);
Base::output($html);
//HTMLを出力
exit;
}
示例6: output
protected function output()
{
$this->need_banner = true;
$this->content = $this->render(TEMPLATE . 'content/main_content');
$this->page = parent::output();
// $this->page = $this->render(TEMPLATE.'index',array(
// 'title'=>$this->title,
// 'header'=>$this->header,
// 'footer'=>$this->footer,
// 'popup'=>$this->popup,
// 'i_user'=>$this->i_user,
// ));
}
示例7: output
protected function output()
{
$this->content = $this->render(TEMPLATE . 'content/catalogpremium_content', array('article' => $this->article, 'article_right' => $this->artcicle_right));
$this->page = parent::output();
// TODO: Change the autogenerated stub
// $this->page = $this->render(TEMPLATE.'catalogpremium',array(
// 'title'=>$this->title,
// 'header'=>$this->header,
// 'footer'=>$this->footer,
// 'popup'=>$this->popup,
// 'i_user'=>$this->i_user,
// 'article'=>$this->article,
// 'article_right'=>$this->artcicle_right,
// ));
}
示例8: output
public function output()
{
$this->content = $this->render(VIEW . 'archive_page', array('archive' => $this->archive, 'navigation' => $this->navigation));
$this->page = parent::output();
return $this->page;
}
示例9: output
protected function output()
{
$this->content = $this->render(VIEW . 'content', array('text' => $this->text));
$this->page = parent::output();
return $this->page;
}
示例10: output
protected function output()
{
$this->content = $this->render(VIEW . 'sitemap_page', array('pages' => $this->pages, 'catalog' => $this->catalog));
$this->page = parent::output();
return $this->page;
}
示例11: output
protected function output()
{
$this->content = $this->render(VIEW . 'contacts_page', array('contacts' => $this->contacts));
$this->page = parent::output();
return $this->page;
}
示例12: output
protected function output()
{
$this->content = $this->render(VIEW . 'product_page', array('product' => $this->product, 'krohi' => $this->krohi));
$this->page = parent::output();
return $this->page;
}
示例13: output
protected function output()
{
$this->content = $this->render(VIEW . 'search_page', array('search' => $this->search, 'navigation' => $this->navigation, 'str' => $this->str));
$this->page = parent::output();
return $this->page;
}
示例14: dump
public function dump()
{
self::$output = self::$output . $this->html;
$this->_clearHtml();
}