You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.8 KiB
58 lines
1.8 KiB
<?php
|
|
|
|
/**
|
|
* ECTouch Open Source Project
|
|
* ============================================================================
|
|
* Copyright (c) 2012-2014 http://ectouch.cn All rights reserved.
|
|
* ----------------------------------------------------------------------------
|
|
* 文件名称:sina.php
|
|
* ----------------------------------------------------------------------------
|
|
* 功能描述:新浪微博登录插件
|
|
* ----------------------------------------------------------------------------
|
|
* Licensed ( http://www.ectouch.cn/docs/license.txt )
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* 访问控制 */
|
|
defined('IN_ECTOUCH') or die('Deny Access');
|
|
|
|
$payment_lang = BASE_PATH . 'language/' . C('lang') . '/connect/' . basename(__FILE__);
|
|
|
|
if (file_exists($payment_lang)) {
|
|
include_once ($payment_lang);
|
|
L($_LANG);
|
|
}
|
|
/* 模块的基本信息 */
|
|
if (isset($set_modules) && $set_modules == TRUE) {
|
|
$i = isset($modules) ? count($modules) : 0;
|
|
/* 类名 */
|
|
$modules[$i]['name'] = 'Weibo';
|
|
// 文件名,不包含后缀
|
|
$modules[$i]['type'] = 'weibo';
|
|
|
|
$modules[$i]['className'] = 'weibo';
|
|
// 作者信息
|
|
$modules[$i]['author'] = 'ECTouch';
|
|
|
|
// 作者QQ
|
|
$modules[$i]['qq'] = '800007167';
|
|
|
|
// 作者邮箱
|
|
$modules[$i]['email'] = 'support@ecmoban.com';
|
|
|
|
// 申请网址
|
|
$modules[$i]['website'] = 'http://open.weibo.com';
|
|
|
|
// 版本号
|
|
$modules[$i]['version'] = '1.0';
|
|
|
|
// 更新日期
|
|
$modules[$i]['date'] = '2014-10-03';
|
|
|
|
/* 配置信息 */
|
|
$modules[$i]['config'] = array(
|
|
array('type' => 'text', 'name' => 'app_key', 'value' => ''),
|
|
array('type' => 'text', 'name' => 'app_secret', 'value' => ''),
|
|
);
|
|
return;
|
|
}
|
|
|