Вход Регистрация
Файл: modules/community/includes/birthdays.php
Строк: 34
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

declare(strict_types=1);

use 
IlluminatePaginationLengthAwarePaginator;
use 
JohncmsUsersUser;

defined('_IN_JOHNCMS') || die('Error: restricted access');

/** @var LengthAwarePaginator $users */
$users = (new User())
    ->
approved()
    ->
where('dayb''='date('j'))
    ->
where('monthb''='date('n'))
    ->
paginate($user->config->kmess);

$nav_chain->add(__('Birthdays'));

echo 
$view->render(
    
'users::users',
    [
        
'pagination' => $users->render(),
        
'title'      => __('Birthdays'),
        
'page_title' => __('Birthdays'),
        
'total'      => $users->total(),
        
'list'       => $users->items(),
    ]
);
Онлайн: 1
Реклама