本文整理汇总了PHP中comments::getAll方法的典型用法代码示例。如果您正苦于以下问题:PHP comments::getAll方法的具体用法?PHP comments::getAll怎么用?PHP comments::getAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类comments
的用法示例。
在下文中一共展示了comments::getAll方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: count
$depositCount = count($deposit);
}
abr('depositCount', $depositCount);
//联系支持处理
require_once ROOT_PATH . '/apps/contacts/models/contacts.class.php';
$contacts = new contacts();
$contacts = $contacts->getAll(0, 0);
$contactsCount = 0;
if ($contacts) {
$contactsCount = count($contacts);
}
abr('contactsCount', $contactsCount);
//举报评论处理
require_once ROOT_PATH . '/apps/items/models/comments.class.php';
$commentsClass = new comments();
$comments = $commentsClass->getAll(0, 0, " `report_by` <> '0' ");
$commentCount = 0;
if ($comments) {
$commentCount = count($comments);
}
abr('commentCount', $commentCount);
//举报评论处理
//已审核作品
$itemCheck = $items->getAll(0, 0, " `status` = 'active' ");
$itemCount = 0;
if ($itemCheck) {
$itemCount = count($itemCheck);
}
abr('itemCount', $itemCount);
//签约作者数量
require_once ROOT_PATH . '/apps/users/models/users.class.php';
示例2: comments
// +----------------------------------------------------------------------
// | Email author@demila.org
// +----------------------------------------------------------------------
_setView(__FILE__);
_setTitle($langArray['report_comments']);
require_once ROOT_PATH . '/apps/items/models/comments.class.php';
$commentsClass = new comments();
#检查评论
if (isset($_GET['check']) && is_numeric($_GET['check'])) {
$commentsClass->reported($_GET['check']);
refresh('?m=' . $_GET['m'] . '&c=comments');
}
if (isset($_GET['item']) && is_numeric($_GET['item'])) {
$url = 'http://' . $_SERVER["SERVER_NAME"] . '' . '/items/comments/' . $_GET['item'];
header("Location: {$url}");
}
$data = $commentsClass->getAll(START, LIMIT, " `report_by` <> '0' ");
abr('data', $data);
$p = paging("?m=" . $_GET['m'] . "&c=comments&p=", "", PAGE, LIMIT, $commentsClass->foundRows);
abr('paging', $p);
if (is_array($data)) {
$usersClass = new users();
$usersWhere = '';
foreach ($data as $d) {
$usersWhere[$d['report_by']] = $d['report_by'];
}
$usersWhere = '`user_id` = ' . implode(' OR `user_id` = ', $usersWhere);
$users = $usersClass->getAll(0, 0, $usersWhere);
abr('users', $users);
}
require_once ROOT_PATH . '/apps/lists/leftlist_admin.php';
示例3: refresh
// +----------------------------------------------------------------------
// | Demila [ Beautiful Digital Content Trading System ]
// +----------------------------------------------------------------------
// | Copyright (c) 2015 http://demila.org All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Email author@demila.org
// +----------------------------------------------------------------------
_setView(__FILE__);
if (!isset($_GET['id']) || !is_numeric($_GET['id'])) {
refresh('?m=' . $_GET['m'] . '&c=list', 'WRONG ID', 'error');
}
$cms = new comments();
if (isset($_GET['report']) && is_numeric($_GET['report'])) {
$cms->reported($_GET['report']);
}
$data = $cms->getAll(START, LIMIT, " `item_id` = '" . $_GET['id'] . "' ");
if (is_array($data)) {
require_once ROOT_PATH . '/apps/users/models/users.class.php';
$usersClass = new users();
$users = $usersClass->getAll(0, 0, $cms->usersWhere);
abr('users', $users);
}
abr('data', $data);
$p = paging("?m=" . $_GET['m'] . "&c=comments&id=" . $_GET['id'] . "&p=", "", PAGE, LIMIT, $cms->foundRows);
abr('paging', $p);
$itemsClass = new items();
$item = $itemsClass->get($_GET['id']);
_setTitle($item['name'] . ' › ' . $langArray['comments']);
require_once ROOT_PATH . '/apps/lists/leftlist_admin.php';
示例4: refresh
_setTitle($langArray['author_dashboard']);
if (!check_login_bool()) {
$_SESSION['temp']['golink'] = '/' . $languageURL . 'author_dashboard/';
refresh('/' . $languageURL . 'sign_in/');
}
if ($_SESSION['user']['quiz'] != 'true') {
refresh('/' . $languageURL . 'make_money/become_an_author/');
}
require_once ROOT_PATH . '/apps/items/models/orders.class.php';
$ordersClass = new orders();
$weekStats = $ordersClass->getWeekStats();
abr('weekStats', $weekStats);
#最新评论
require_once ROOT_PATH . '/apps/items/models/comments.class.php';
$commentsClass = new comments();
$comments = $commentsClass->getAll(0, 100, " `owner_id` = '" . intval($_SESSION['user']['user_id']) . "' AND `reply_to` = '0' ", true, '`datetime` DESC');
if (is_array($comments)) {
$usersClass = new users();
$users = $usersClass->getAll(0, 0, $commentsClass->usersWhere);
abr('users', $users);
}
abr('comments', $comments);
require_once ROOT_PATH . '/apps/items/models/orders.class.php';
$ordersClass = new orders();
if (isset($_POST['ajax'])) {
$month = get_id(2);
$year = get_id(3);
$text = '';
$sales = $ordersClass->getAll(" `paid_datetime` > '" . date('Y-m-d 23:59:59', mktime(0, 0, 0, $month - 1, date('t', mktime(0, 0, 0, $month - 1, 1, $year)), $year)) . "' AND `paid_datetime` < '" . date('Y-m-d 00:00:00', mktime(0, 0, 0, $month + 1, 1, $year)) . "' AND `paid` = 'true' AND `type` = 'buy' AND `owner_id` = '" . intval($_SESSION['user']['user_id']) . "' ", "`paid_datetime` ASC");
if (is_array($sales)) {
$buff = array();