当前位置: 首页>>代码示例>>PHP>>正文


PHP connection::success方法代码示例

本文整理汇总了PHP中connection::success方法的典型用法代码示例。如果您正苦于以下问题:PHP connection::success方法的具体用法?PHP connection::success怎么用?PHP connection::success使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在connection的用法示例。


在下文中一共展示了connection::success方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: loginByHash

function loginByHash($_key, $_ajax = false)
{
    $user = user::byHash($_key);
    if (is_object($user) && $user->getEnable() == 1) {
        connection::success($user->getLogin());
        @session_start();
        $_SESSION['user'] = $user;
        @session_write_close();
        setcookie('registerDevice', $_key, time() + 365 * 24 * 3600, "/", '', false, true);
        log::add('connection', 'info', __('Connexion de l\'utilisateur par clef : ', __FILE__) . $user->getLogin());
        $getParams = '';
        unset($_GET['auth']);
        foreach ($_GET as $var => $value) {
            $getParams .= $var . '=' . $value . '&';
        }
        if (!$_ajax) {
            if (strpos($_SERVER['PHP_SELF'], 'core') || strpos($_SERVER['PHP_SELF'], 'desktop')) {
                header('Location:../../index.php?' . trim($getParams, '&'));
            } else {
                header('Location:index.php?' . trim($getParams, '&'));
            }
        }
        return true;
    }
    connection::failed();
    sleep(5);
    if (!$_ajax) {
        if (strpos($_SERVER['PHP_SELF'], 'core') || strpos($_SERVER['PHP_SELF'], 'desktop')) {
            header('Location:../../index.php?v=derror=1');
        } else {
            header('Location:index.php?v=' . $_GET['v'] . '&error=1');
        }
    }
    return false;
}
开发者ID:saez0pub,项目名称:core,代码行数:35,代码来源:authentification.php

示例2: dirname

 * Jeedom is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Jeedom. If not, see <http://www.gnu.org/licenses/>.
 */
try {
    require_once dirname(__FILE__) . '/../../core/php/core.inc.php';
    include_file('core', 'authentification', 'php');
    if (init('action') == 'login') {
        if (!isConnect() && config::byKey('sso:allowRemoteUser') == 1) {
            $user = user::byLogin($_SERVER['REMOTE_USER']);
            if (is_object($user) && $user->getEnable() == 1) {
                connection::success($user->getLogin());
                @session_start();
                $_SESSION['user'] = $user;
                @session_write_close();
                log::add('connection', 'info', __('Connexion de l\'utilisateur par REMOTE_USER : ', __FILE__) . $user->getLogin());
            }
        }
        if (!isConnect() && !login(init('username'), init('password'), true)) {
            throw new Exception('Mot de passe ou nom d\'utilisateur incorrect');
        }
        if (init('storeConnection') == 1) {
            setcookie('registerDevice', $_SESSION['user']->getHash(), time() + 365 * 24 * 3600, "/", '', false, true);
        }
        ajax::success();
    }
    if (init('action') == 'forgotPassword') {
开发者ID:saez0pub,项目名称:core,代码行数:31,代码来源:user.ajax.php

示例3: Exception

             throw new Exception('Nom d\'utilisateur ou mot de passe invalide', -32001);
         }
         $session_lifetime = config::byKey('session_lifetime', 24);
         if (!is_numeric($session_lifetime)) {
             $session_lifetime = 24;
         }
         ini_set('session.gc_maxlifetime', $session_lifetime * 3600);
         @session_start();
         $_SESSION['user'] = $user;
         @session_write_close();
     } else {
         connection::failed();
         throw new Exception('Aucune clé API ou nom d\'utilisateur', -32001);
     }
 }
 connection::success('api');
 /*             * ************************config*************************** */
 if ($jsonrpc->getMethod() == 'config::byKey') {
     $jsonrpc->makeSuccess(config::byKey($params['key'], $params['plugin'], $params['default']));
 }
 if ($jsonrpc->getMethod() == 'config::save') {
     $jsonrpc->makeSuccess(config::save($params['key'], $params['value'], $params['plugin']));
 }
 if (isset($params['plugin']) && $params['plugin'] != '') {
     log::add('api', 'info', 'Demande pour le plugin : ' . $params['plugin']);
     include_file('core', $params['plugin'], 'api', $params['plugin']);
 } else {
     /*             * ***********************Ping********************************* */
     if ($jsonrpc->getMethod() == 'ping') {
         $jsonrpc->makeSuccess('pong');
     }
开发者ID:GaelGRIFFON,项目名称:core,代码行数:31,代码来源:jeeApi.php


注:本文中的connection::success方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。