當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Setup::init方法代碼示例

本文整理匯總了PHP中Setup::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP Setup::init方法的具體用法?PHP Setup::init怎麽用?PHP Setup::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Setup的用法示例。


在下文中一共展示了Setup::init方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 public function init()
 {
     parent::init();
     return;
 }
開發者ID:BGCX261,項目名稱:zlskytakeorder-svn-to-git,代碼行數:5,代碼來源:Rbac.class.php

示例2: printHelp

    echo "{$message}";
    echo "\n--------------------------------------------------------------------------------";
    echo "\n";
}
/*echo getcwd();
echo "Número: $argc\n";
echo "Params: $argv\n";*/
if ($argc != 2 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
    printHelp();
}
//Directorio principal
$path = getcwd();
echo getcwd();
//Instanciamos clase base
require_once 'setup_cli.class.php';
$setup =& Setup::init();
//Configuración del idioma
$setup->setLanguage($argv[1], $path);
//Presentaciones inicio
echo "\n\n";
echo $setup->log(agt('setupIntro'), 'label');
echo "\n\n";
echo $setup->log(agt('setupDet'), 'label');
echo "\n\n";
$setup->intro();
// Controlamos la existencia de los elementos necesarios para el setup
// Comprobamos las extesiones necesarias, tanto para el setup como para miguel
printStep(agt('step1'), agt('step1Des'));
$exts = array('standard', 'gettext', 'session', 'zlib', 'pcre');
for ($i = 0; $i < count($exts); $i++) {
    if (!$setup->check($exts[$i])) {
開發者ID:BackupTheBerlios,項目名稱:migueloo,代碼行數:31,代碼來源:setup.php

示例3: define

<?php

/*********************************************************************
  SHA1 hash of the info page password, the preset password is the
  empty string. You might change it to keep this information private.
  Online hash generator: http://www.sha1.cz/
*********************************************************************/
define("PASSHASH", "da39a3ee5e6b4b0d3255bfef95601890afd80709");
function normalized_require_once($lib)
{
    require_once preg_replace("#[\\\\/]+#", "/", dirname(__FILE__) . "/inc/{$lib}.php");
}
function __autoload($class_name)
{
    normalized_require_once("class-" . strtolower($class_name));
}
Setup::init();
$app = new App();
if (Util::has_request_param("action")) {
    $api = new Api($app);
    $api->apply();
} else {
    define("FALLBACK", $app->get_fallback());
    normalized_require_once("page");
}
開發者ID:kiyor,項目名稱:h5ai,代碼行數:25,代碼來源:index.php


注:本文中的Setup::init方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。