本文整理汇总了PHP中TApplication::run方法的典型用法代码示例。如果您正苦于以下问题:PHP TApplication::run方法的具体用法?PHP TApplication::run怎么用?PHP TApplication::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TApplication
的用法示例。
在下文中一共展示了TApplication::run方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ob_start
ob_start();
$pagina->show();
$content = ob_get_contents();
ob_end_clean();
} else {
$pagina = new erro();
$pagina->codigo = 404;
ob_start();
$pagina->show();
$content = ob_get_contents();
ob_end_clean();
}
} else {
$pagina = new home();
ob_start();
$pagina->show();
$content = ob_get_contents();
ob_end_clean();
}
/*
* Susbstitui a string #CONTENT# do template para a pagina principal
*/
$site = str_replace('#CONTENT#', $content, $template);
echo $site;
}
}
}
TApplication::run();
?>
示例2: dirname
<?php
$basePath = dirname(__FILE__);
$frameworkPath = '../prado-3.2.2.r3297/framework/prado.php';
$assetsPath = $basePath . "/assets";
if (!is_writable($assetsPath)) {
die("Please make sure that the directory {$assetsPath} is writable by Web server process.");
}
require_once $frameworkPath;
//include_once("analyticstracking.php") ;
$application = new TApplication();
$application->run();
示例3: dirname
<?php
require_once dirname(__FILE__) . '/../../../framework/prado.php';
$app = new TApplication('protected700/application.xml');
$app->run();
示例4: run
<?php
require_once 'init.php';
// define the Home controller for breadcrumb
TXMLBreadCrumb::setHomeController('WelcomeView');
class TApplication extends AdiantiCoreApplication
{
public static function run($debug = FALSE)
{
new TSession();
if ($_REQUEST) {
parent::run($debug);
}
}
}
TApplication::run(TRUE);
示例5: h
//$frameworkPath='../../framework/pradolite.php';
$frameworkPath = '../../framework/prado.php';
$assetsPath = $basePath . "/assets";
$runtimePath = $basePath . "/protected/runtime";
$sqlite_dir = $basePath . "/protected/App_Data/SQLite";
$sqlite_db = $sqlite_dir . '/time-tracker.db';
if (!is_file($frameworkPath)) {
die("Unable to find prado framework path {$frameworkPath}.");
}
if (!is_writable($assetsPath)) {
die("Please make sure that the directory {$assetsPath} is writable by Web server process.");
}
if (!is_writable($runtimePath)) {
die("Please make sure that the directory {$runtimePath} is writable by Web server process.");
}
if (!is_writable($sqlite_dir)) {
die("Please make sure that the directory {$sqlite_dir} is writable by Web server process.");
}
if (!is_writable($sqlite_db)) {
die("Please make sure that the sqlite database file {$sqlite_dir} is writable by Web server process.");
}
require_once $frameworkPath;
function h($text)
{
$app = Prado::getApplication()->getGlobalization();
$charset = $app ? $app->getCharset() : 'UTF-8';
return htmlentities($text, ENT_QUOTES, $charset);
}
$application = new TApplication();
$application->run('protected', false, TApplication::CONFIG_TYPE_PHP);