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


PHP AmpConfig::Get方法代码示例

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


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

示例1: T_

    </tbody>
    <tfoot>
        <tr class="th-bottom">
            <th class="cel_play"></th>
            <th class="cel_streamname"><?php 
echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=name', T_('Name'), 'live_stream_sort_name');
?>
</th>
            <th class="cel_streamurl"><?php 
echo T_('Stream URL');
?>
</th>
            <th class="cel_codec"><?php 
echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=codec', T_('Codec'), 'live_stream_codec_bottom');
?>
</th>
            <th class="cel_action"><?php 
echo T_('Action');
?>
 </th>
        </tr>
    </tfoot>
</table>
<script src="<?php 
echo AmpConfig::get('web_path');
?>
/lib/javascript/tabledata.js" language="javascript" type="text/javascript"></script>
<?php 
if ($browse->get_show_header()) {
    require AmpConfig::Get('prefix') . '/templates/list_header.inc.php';
}
开发者ID:nioc,项目名称:ampache,代码行数:31,代码来源:show_live_streams.inc.php

示例2: session_start

require_once AmpConfig::get('prefix') . "/modules/twitter/twitteroauth/twitteroauth.php";
session_start();
if (!empty($_SESSION['twitterusername'])) {
    header('Location: ' . AmpConfig::Get('web_path') . '/modules/twitter/twitter_update.php');
    debug_event("Twitter", "Twitter user has logged in this session.", "5");
}
if (!empty($_GET['oauth_verifier']) && !empty($_SESSION['oauth_token']) && !empty($_SESSION['oauth_token_secret'])) {
    debug_event("Twitter", "Got all 3 pieces for auth", "5");
} else {
    if ($_SESSION['twitterCount'] < 4) {
        debug_event("Twitter", "Didn't get all 3 auth pieces, going to try again.  Try #" . $_SESSION['twitterCount'], "5");
        $_SESSION['twitterCount']++;
        header('Location: ' . AmpConfig::Get('web_path') . '/modules/twitter/twitter_login.php');
    } else {
        debug_event("Twitter", "Failed to auth too many times.  Giving up.", "5");
        header('Location: ' . AmpConfig::Get('web_path'));
    }
}
// TwitterOAuth instance, with two new parameters we got in twitter_login.php
$twitteroauth = new TwitterOAuth(AmpConfig::get('twitter_consumer_key'), AmpConfig::get('twitter_consumer_secret'), $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);
if (!isset($twitteroauth)) {
    debug_event("Twitter", "Couldn't create OAuth object.", "5");
    header('Location: ' . AmpConfig::get('web_path'));
}
// Let's request the access token
$access_token = $twitteroauth->getAccessToken($_GET['oauth_verifier']);
if (!isset($access_token)) {
    debug_event("Twitter", "Couldn't get access token", "5");
    header('Location: ' . AmpConfig::get('web_path'));
}
// Save it in a session var
开发者ID:axelsimon,项目名称:ampache,代码行数:31,代码来源:twitter_works.php


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