-
Notifications
You must be signed in to change notification settings - Fork 4
/
groups.php
109 lines (103 loc) · 4.61 KB
/
groups.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
declare(strict_types=1);
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @category Module
* @package suico
* @copyright {@link https://xoops.org/ XOOPS Project}
* @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author Marcello Brandão aka Suico, Mamba, LioMJ <https://xoops.org>
*/
use Xmf\Request;
use XoopsModules\Suico\{
GroupController
};
$GLOBALS['xoopsOption']['template_main'] = 'suico_groups.tpl';
require __DIR__ . '/header.php';
$controller = new GroupController($xoopsDB, $xoopsUser);
$start_all = Request::getInt('start_all', 0, 'GET');
$start_my = Request::getInt('start_my', 0, 'GET');
/**
* Fetching numbers of groups friends videos pictures etc...
*/
$nbSections = $controller->getNumbersSections();
/**
* All Groups
*/
$criteria_groups = new Criteria('group_id', 0, '>');
$countGroups = $controller->groupsFactory->getCount($criteria_groups);
//$criteria_groups->setLimit($helper->getConfig('groupsperpage'));
$criteria_groups->setStart($start_all);
$groups = $controller->groupsFactory->getGroups($criteria_groups);
/**
* My Groups
*/
$mygroups = '';
$criteria_mygroups = new Criteria('rel_user_uid', $controller->uidOwner);
$countMyGroups = $controller->relgroupusersFactory->getCount($criteria_mygroups);
//$criteria_mygroups->setLimit($helper->getConfig('groupsperpage'));
$criteria_mygroups->setStart($start_my);
$mygroups = $controller->relgroupusersFactory->getGroups('', $criteria_mygroups, 0);
$mygroupsid = [];
foreach ($mygroups as $value) {
$mygroupsid[] = $value['group_id'];
}
/**
* Creating the navigation bar if you have a lot of friends
*/
$navigationBar = new \XoopsPageNav(
$countGroups, $helper->getConfig('groupsperpage'), $start_all, 'start_all', 'uid=' . (int)$controller->uidOwner . '&start_my=' . $start_my . '#allgroups'
);
$imageNav = $navigationBar->renderImageNav(2); //allgroups
$navigationBar_my = new \XoopsPageNav(
$countMyGroups, $helper->getConfig('groupsperpage'), $start_my, 'start_my', 'uid=' . (int)$controller->uidOwner . '&start_all=' . $start_all . '#mygroups'
);
$imageNav_my = $navigationBar_my->renderImageNav(2);
$maxfilebytes = $helper->getConfig('maxfilesize');
//form
$xoopsTpl->assign('lang_youcanupload', sprintf(_MD_SUICO_YOU_CAN_UPLOAD, $maxfilebytes / 1024));
$xoopsTpl->assign('lang_groupimage', _MD_SUICO_GROUP_IMAGE);
$xoopsTpl->assign('maxfilesize', $maxfilebytes);
$xoopsTpl->assign('lang_title', _MD_SUICO_GROUP_TITLE);
$xoopsTpl->assign('lang_description', _MD_SUICO_GROUP_DESC);
$xoopsTpl->assign('lang_savegroup', _MD_SUICO_UPLOADGROUP);
//$xoopsTpl->assign('path_suico_uploads',$helper->getConfig('link_path_upload'));
$xoopsTpl->assign('groups', $groups);
$xoopsTpl->assign('mygroups', $mygroups);
$xoopsTpl->assign('mygroupsid', $mygroupsid);
$xoopsTpl->assign('lang_mygroupstitle', _MD_SUICO_MYGROUPS);
$xoopsTpl->assign('lang_groupstitle', _MD_SUICO_ALLGROUPS . ' (' . $countGroups . ')');
$xoopsTpl->assign('lang_nogroupsyet', _MD_SUICO_NOGROUPSYET);
$xoopsTpl->assign('lang_availablegroups', _MD_SUICO_AVAILABLEGROUPS);
$xoopsTpl->assign('groupstotal', $countGroups);
$xoopsTpl->assign('lang_groupslist', _MD_SUICO_GROUPSLIST);
//page nav
$xoopsTpl->assign('navigationBar', $imageNav); //allgroups
$xoopsTpl->assign('navigationBar_my', $imageNav_my);
$xoopsTpl->assign(
'countGroups',
$countMyGroups
); // this is the one which shows in the upper bar actually is about the mygroups
$xoopsTpl->assign(
'countGroups_all',
$countGroups
); //this is total number of groups
$xoopsTpl->assign('lang_creategroup', _MD_SUICOCREATEYOURGROUP);
$xoopsTpl->assign('lang_owner', _MD_SUICO_GROUPOWNER);
$xoopsTpl->assign('lang_abandongroup', _MD_SUICO_GROUP_ABANDON);
$xoopsTpl->assign('lang_joingroup', _MD_SUICO_GROUP_JOIN);
$xoopsTpl->assign('lang_searchgroup', _MD_SUICO_GROUP_SEARCH);
$xoopsTpl->assign('lang_groupkeyword', _MD_SUICO_GROUP_SEARCHKEYWORD);
$xoopsTpl->assign('lang_memberofgroup', _MD_SUICO_MEMBEROFGROUP);
$xoopsTpl->assign('lang_grouptotalmembers', _MD_SUICO_GROUPTOTALMEMBERS);
$xoopsTpl->assign('lang_mysection', _MD_SUICO_MYGROUPS);
$xoopsTpl->assign('section_name', _MD_SUICO_GROUPS);
require __DIR__ . '/footer.php';
require dirname(__DIR__, 2) . '/footer.php';