コード例 #1
0
ファイル: module.php プロジェクト: hfutxrl2011/KCframwork
 protected static function _addCustomErrorMap()
 {
     $addMap = array('database' => array('http_code' => 200, 'error_code' => '200800', 'error_msg' => 'database error occured'), 'duplicate' => array('http_code' => 200, 'error_code' => '200801', 'error_msg' => 'duplicated record was found in database'), 'cache' => array('http_code' => 200, 'error_code' => '200802', 'error_msg' => 'cache error occured'), 'submit' => array('http_code' => 200, 'error_code' => '200803', 'error_msg' => 'method must use POST'), 'formhash' => array('http_code' => 200, 'error_code' => '200804', 'error_msg' => 'formhash check failed'), 'dupreg' => array('http_code' => 200, 'error_code' => '200805', 'error_msg' => 'user or email has been already registed'), 'verify' => array('http_code' => 200, 'error_code' => '200806', 'error_msg' => 'verify reject, invalid'), 'nouser' => array('http_code' => 200, 'error_code' => '200807', 'error_msg' => 'such user does not exist'), 'errpass' => array('http_code' => 200, 'error_code' => '200808', 'error_msg' => 'error password'), 'needlogin' => array('http_code' => 200, 'error_code' => '200809', 'error_msg' => 'user should login before such operation'), 'erremail' => array('http_code' => 200, 'error_code' => '200810', 'error_msg' => 'account does not match with email'), 'exist' => array('http_code' => 200, 'error_code' => '200811', 'error_msg' => 'such item already exists'));
     EnvConf::$errorMap = array_merge(EnvConf::$errorMap, $addMap);
 }
コード例 #2
0
ファイル: dev.inc.php プロジェクト: tjuwhs/Dola
<?php

/***************************************************************************
 * 
 * Copyright (c) Dola , Inc. All Rights Reserved
 * 
 **************************************************************************/
/**
 * @file: ${FILE_NAME}.
 * @author: tjuwhs@gmail.com
 * @date: 14-9-19 下午9:20
 * @brief:
 */
EnvConf::$logPath = getenv('HOME') . '/var/log/#module#.log';
EnvConf::$phpLogPath = getenv('HOME') . '/var/log/php.#module#.log';
EnvConf::$showLogPath = getenv('HOME') . '/var/log/show.#module#.log';
EnvConf::$logLevel = 127;
class EnvConf
{
    public static $dbOptions = array('host' => array(), 'port' => 0, 'username' => '', 'password' => '', 'db' => '', 'charset' => 'utf8');
    public static $logPath = '';
    public static $phpLogPath = '';
    public static $showLogPath = '';
    public static $logLevel = 255;
    public static $moduleList = array('App', 'Page');
}
コード例 #3
0
ファイル: prod.inc.php プロジェクト: tjuwhs/Dola
<?php

/***************************************************************************
 * 
 * Copyright (c) Dola , Inc. All Rights Reserved
 * 
 **************************************************************************/
/**
 * @file: ${FILE_NAME}.
 * @author: tjuwhs@gmail.com
 * @date: 14-9-15 下午10:21
 * @brief:
 */
EnvConf::$logPath = getenv('HOME') . '/var/log/#module#.log';
EnvConf::$phpLogPath = getenv('HOME') . '/var/log/php.#module#.log';
EnvConf::$showLogPath = getenv('HOME') . '/var/log/show.#module#.log';
EnvConf::$logLevel = 63;
class EnvConf
{
    public static $dbOptions = array('host' => array(), 'port' => 0, 'username' => '', 'password' => '', 'db' => '', 'charset' => 'utf8');
    public static $logPath = '';
    public static $phpLogPath = '';
    public static $showLogPath = '';
    public static $logLevel = 255;
    public static $moduleList = array('App', 'Page');
}