예제 #1
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section12_i18n', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #2
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section4_mvc', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #3
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section14_log', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #4
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section6_session', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #5
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section7_auth', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #6
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section10_db', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #7
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section8_acl', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #8
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section9_filter', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #9
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section11_l10n', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #10
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section5_except', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #11
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section17_perf', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;
예제 #12
0
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: index.php 122 2007-04-13 14:27:45Z gavin $
 *
 * http://framework.zend.com/wiki/display/ZFDEV/Tutorial
 *
 * This script performs the minimum tasks needed to load the real ZFDemo bootstrap.
 * Thus, the real bootstrap is not "exposed" in the web server's document root (security).
 */
// CONFIGURE only this line.  All else is in: .../zfdemo/section*/config/*
ZFDemoGrub('section15_email', 'sandbox');
// load the ZF bootstrap
// absolute real paths are also ok
//ZFDemoGrub('/cygdrive/c/gavin/home/lighttpd/zf/zfdemo/section4_mvc/', 'sandbox');
/**
 * Find and load the real ZFDemo bootstrap.php file
 */
function ZFDemoGrub($installDir, $configEnv)
{
    error_reporting(E_ALL | E_STRICT);
    // verbose
    $ds = DIRECTORY_SEPARATOR;
    // too much typing ;)
    // where to find this application's configuration (using Conventional Modular Layout)
    if ($installDir[0] === $ds) {
        $tmp = $installDir;