本文整理汇总了PHP中rating::get_all_member_custom方法的典型用法代码示例。如果您正苦于以下问题:PHP rating::get_all_member_custom方法的具体用法?PHP rating::get_all_member_custom怎么用?PHP rating::get_all_member_custom使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rating
的用法示例。
在下文中一共展示了rating::get_all_member_custom方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: rating
<?php
require_once 'config.php';
require_once 'class/rating.php';
require_once 'functions/functions.php';
$renderObj = new rating();
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest') {
$record = $renderObj->saveWorkManager($_POST);
}
$alphaValue = strip_tags($_POST['alphaValue']);
$alphaValue = $alphaValue != '' ? $alphaValue : 0;
$alphaValue = $alphaValue == 'All' ? '' : $alphaValue;
$team_member = $renderObj->get_all_member_custom();
$rating_dashboard = $renderObj->rating_dashboard($team_member, $alphaValue);
$rating_dashboard = sortByRating($rating_dashboard);
//pr($rating_dashboard);
if (!empty($rating_dashboard)) {
$i = 0;
foreach ($rating_dashboard as $key => $val) {
$i++;
$user_id = $val['id'];
$profile_pic = $val['google_picture_link'] ? $val['google_picture_link'] . "?sz=100" : 'images/user.png';
?>
<div class="mid-col-4">
<div class="mid-col-top">
<div class="mid-col-img"><a href="./profile.php?id=<?php
echo $val['id'];
?>
&edit_comment=true"><img src="<?php
echo $profile_pic;
?>
示例2: rating
<?php
require_once 'config.php';
require_once 'class/rating.php';
$renderObj = new rating();
$page_number = (int) (!isset($_GET['page']) ? 1 : $_GET['page']);
$user_id = $_SESSION['userinfo']->id != '' ? $_SESSION['userinfo']->id : 0;
require_once 'header.php';
$user_data = $renderObj->get_all_member_custom();
if (isset($_GET['chk'])) {
$error_id = isset($_GET['chk']) ? (int) $_GET['chk'] : 0;
if ($error_id != 0 && array_key_exists($error_id, $errors)) {
$cls = "error-red";
echo '<div class="', $cls, '" style="width:55%;margin-left: 28%;"><div class="close-alert"></div>', $errors[$error_id], '</div>';
}
}
?>
<div class="succes-green"><div class="close-alert"></div> <?php
echo $errors[18];
?>
</div>
<div id="allchars" class="link-block-all">
<a href="javascript:void(0);" id="charAll" class="link-all link-alphabet Alphas">All</a>
<?php
$names = array();
foreach ($user_data as $character) {
$names[] = substr($character['name'], 0, 1);
}
$names = array_unique($names);
foreach ($names as $character) {
echo '<a href="javascript:void(0);" id="char', $character['name'], '" class="link-alphabet Alphas">', ucfirst($character['name']), '</a>';