本文整理汇总了PHP中Pi::engine方法的典型用法代码示例。如果您正苦于以下问题:PHP Pi::engine方法的具体用法?PHP Pi::engine怎么用?PHP Pi::engine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pi
的用法示例。
在下文中一共展示了Pi::engine方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
/*
// Skip engine bootup
define('PI_BOOT_SKIP', 1);
// Disable error_reporting
define('APPLICATION_ENV', 'production');
// Lookup Pi Engine boot
// Pi boot with no engine bootup: current file is located in www/script/...
include '../../../boot.php';
*/
// Pi boot with no engine bootup: current file is located in www/script/...
require __DIR__ . '/../../../boot.php';
// Disable debugger message
Pi::service('log')->mute();
// Load session resource which is required by CKfinder
Pi::engine()->bootResource('session');
//$session = Pi::service('session')->ckfinder;
$session = $_SESSION['PI_CKFINDER'];
/*
* ### CKFinder : Configuration File - Basic Instructions
*
* In a generic usage case, the following tasks must be done to configure
* CKFinder:
* 1. Check the $baseUrl and $baseDir variables;
* 2. If available, paste your license key in the "LicenseKey" setting;
* 3. Create the CheckAuthentication() function that enables CKFinder for authenticated users;
*
* Other settings may be left with their default values, or used to control
* advanced features of CKFinder.
*/
/**
示例2: getRenderer
/**
* Get renderer
*
* @return \Zend\View\Renderer
*/
protected function getRenderer()
{
$renderer = Pi::engine()->application()->getServiceManager()->get('viewRenderer');
return $renderer;
}