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.
139 lines
4.2 KiB
139 lines
4.2 KiB
<?php
|
|
|
|
defined('IN_IA') or exit('Access Denied');
|
|
|
|
if (isset($_W['uniacid'])) {
|
|
$_W['weid'] = $_W['uniacid'];
|
|
}
|
|
if (isset($_W['openid'])) {
|
|
$_W['fans']['from_user'] = $_W['openid'];
|
|
}
|
|
if (isset($_W['member']['uid'])) {
|
|
if (empty($_W['fans']['from_user'])) {
|
|
$_W['fans']['from_user'] = $_W['member']['uid'];
|
|
}
|
|
}
|
|
|
|
|
|
if (!function_exists('fans_search')) {
|
|
function fans_search($user, $fields = array()) {
|
|
global $_W;
|
|
load()->model('mc');
|
|
$uid = intval($user);
|
|
if (empty($uid)) {
|
|
$uid = pdo_fetchcolumn('SELECT uid FROM ' . tablename('mc_mapping_fans') . ' WHERE openid = :openid AND uniacid = :uniacid', array(':openid' => $user, ':uniacid' => $_W['uniacid']));
|
|
if (empty($uid)) {
|
|
return array(); }
|
|
}
|
|
|
|
return mc_fetch($uid, $fields);
|
|
}
|
|
}
|
|
|
|
if (!function_exists('fans_fields')) {
|
|
function fans_fields() {
|
|
load()->model('mc');
|
|
|
|
return mc_fields();
|
|
}
|
|
}
|
|
|
|
if (!function_exists('fans_update')) {
|
|
function fans_update($user, $fields) {
|
|
global $_W;
|
|
load()->model('mc');
|
|
$uid = intval($user);
|
|
if (empty($uid)) {
|
|
$uid = pdo_fetchcolumn('SELECT uid FROM ' . tablename('mc_mapping_fans') . ' WHERE openid = :openid AND uniacid = :uniacid', array(':openid' => $user, ':uniacid' => $_W['uniacid']));
|
|
if (empty($uid)) {
|
|
return false; }
|
|
}
|
|
|
|
return mc_update($uid, $fields);
|
|
}
|
|
}
|
|
|
|
if (!function_exists('create_url')) {
|
|
function create_url($segment = '', $params = array(), $noredirect = false) {
|
|
return url($segment, $params, $noredirect);
|
|
}
|
|
}
|
|
|
|
if (!function_exists('toimage')) {
|
|
function toimage($src) {
|
|
return tomedia($src);
|
|
}
|
|
}
|
|
|
|
if (!function_exists('uni_setting')) {
|
|
function uni_setting($uniacid = 0, $fields = '*', $force_update = false) {
|
|
global $_W;
|
|
load()->model('account');
|
|
if ('*' == $fields) {
|
|
$fields = '';
|
|
}
|
|
|
|
return uni_setting_load($fields, $uniacid);
|
|
}
|
|
}
|
|
if (!function_exists('activity_token_owned')) {
|
|
function activity_token_owned($uid, $filter = array(), $pindex = 1, $psize = 10) {
|
|
return activity_coupon_owned();
|
|
}
|
|
}
|
|
if (!function_exists('activity_token_info')) {
|
|
function activity_token_info($couponid, $uniacid) {
|
|
return activity_coupon_info($couponid);
|
|
}
|
|
}
|
|
if (!function_exists('activity_token_grant')) {
|
|
function activity_token_grant($uid, $couponid, $module = '', $remark = '') {
|
|
return activity_coupon_grant($couponid, $uid);
|
|
}
|
|
}
|
|
if (!function_exists('activity_token_use')) {
|
|
function activity_token_use($uid, $couponid, $operator, $clerk_id = 0, $recid = '', $module = 'system', $clerk_type = 1, $store_id = 0) {
|
|
return activity_coupon_use($couponid, $recid, $module);
|
|
}
|
|
}
|
|
if (!function_exists('activity_token_available')) {
|
|
function activity_token_available($uid, $pindex = 1, $psize = 0) {
|
|
return activity_coupon_available();
|
|
}
|
|
}
|
|
if (!function_exists('uni_user_permission')) {
|
|
function uni_user_permission($type = 'system') {
|
|
return permission_account_user($type);
|
|
}
|
|
}
|
|
if (!function_exists('uni_permission')) {
|
|
function uni_permission($uid = 0, $uniacid = 0) {
|
|
return permission_account_user_role($uid, $uniacid);
|
|
}
|
|
}
|
|
if (!function_exists('uni_user_permission_exist')) {
|
|
function uni_user_permission_exist($uid = 0, $uniacid = 0) {
|
|
return permission_account_user_permission_exist($uid, $uniacid);
|
|
}
|
|
}
|
|
if (!function_exists('uni_user_permission_check')) {
|
|
function uni_user_permission_check($permission_name = '', $show_message = true, $action = '') {
|
|
return permission_check_account_user($permission_name, $show_message, $action);
|
|
}
|
|
}
|
|
if (!defined('CACHE_KEY_MODULE_SETTING')) {
|
|
define('CACHE_KEY_MODULE_SETTING', 'module_setting:%s:%s');
|
|
}
|
|
if (!function_exists('uni_accounts')) {
|
|
function uni_accounts($uniacid = 0) {
|
|
global $_W;
|
|
$uniacid = empty($uniacid) ? $_W['uniacid'] : intval($uniacid);
|
|
$account_info = pdo_get('account', array('uniacid' => $uniacid));
|
|
if (!empty($account_info)) {
|
|
$account_tablename = uni_account_type($account_info['type']);
|
|
$account_tablename = $account_tablename['table_name'];
|
|
$accounts = pdo_fetchall("SELECT w.*, a.type, a.isconnect FROM " . tablename('account') . " a INNER JOIN " . tablename($account_tablename) . " w USING(acid) WHERE a.uniacid = :uniacid AND a.isdeleted <> 1 ORDER BY a.acid ASC", array(':uniacid' => $uniacid), 'acid');
|
|
}
|
|
return !empty($accounts) ? $accounts : array();
|
|
}
|
|
}
|