本文整理汇总了PHP中main::get_output方法的典型用法代码示例。如果您正苦于以下问题:PHP main::get_output方法的具体用法?PHP main::get_output怎么用?PHP main::get_output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类main
的用法示例。
在下文中一共展示了main::get_output方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: die
<?php
/**
* @Author Jonathon byrd
* @link http://www.5twentystudios.com
* @Package Five Twenty CMS
* @SubPackage PublicMarketSpace
* @Since 1.0.0
* @copyright Copyright (C) 2011 5Twenty Studios
*
*/
defined('ABSPATH') or die("Cannot access pages directly.");
show_view('header-w-wrap');
show_view('sidebar-profile-left');
global $cl, $page;
require_once ABSPATH . 'inc' . DS . 'func_business.php';
// declaring globals
$page = 'profile';
$cl = new contentLogic();
$main = new main($page);
$content = $main->get_output();
require $view;
show_view('footer-w-wrap');
示例2: die
/**
* @Author Jonathon byrd
* @link http://www.5twentystudios.com
* @Package Five Twenty CMS
* @SubPackage PublicMarketSpace
* @Since 1.0.0
* @copyright Copyright (C) 2011 5Twenty Studios
*
*/
defined('ABSPATH') or die("Cannot access pages directly.");
global $cl;
require_once ABSPATH . 'inc' . DS . 'func_product_root.php';
// START META AND TITLE INFO FOR PAGE
$meta_desc = '<meta name="description" content="' . SITE_DESC . ' - ';
$meta_keywords = '<meta name="keywords" content="' . SITE_KEYWORDS . ' - ';
$title = '<title>';
$cl = new contentLogic();
$main = new main();
// SETUP TEMPLATE
$template = ABSPATH . 'inc/tpl/shell.inc';
$output = new main_output($template);
// CONTINUE META \\
$title .= ' - ' . SITE_TITLE . '</title>';
$meta_keywords .= '" />' . "\n";
$meta_desc .= '" />' . "\n";
$meta = $meta_desc . $meta_keywords . $title;
// STRIP THE TAGS
$output->replace_tags(array('header' => get_show_view('header'), 'footer' => get_show_view('footer'), 'shell_content' => $main->get_output()));
// OUTPUT TO SCREEN
$output->output_values();
示例3: contentLogic
<?php
show_view('header-w-wrap');
show_view('sidebar-profile-left');
?>
<div class="profile-content">
<h1>service information</h1>
<?php
global $cl, $page;
require_once ABSPATH . 'inc' . DS . 'func_service.php';
// declaring globals
$page = 'service';
$cl = new contentLogic();
$main = new main($page);
echo $main->get_output();
?>
</div>
<?php
show_view('footer-w-wrap');