コード例 #1
0
ファイル: config.php プロジェクト: Andyyang1981/pi
/*
// 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
0
ファイル: AbstractProvider.php プロジェクト: Andyyang1981/pi
 /**
  * Get renderer
  *
  * @return \Zend\View\Renderer
  */
 protected function getRenderer()
 {
     $renderer = Pi::engine()->application()->getServiceManager()->get('viewRenderer');
     return $renderer;
 }