@@ -9,15 +9,15 @@ discard block |
||
9 | 9 | use XoopsModules\Smartfaq; |
10 | 10 | use XoopsModules\Smartfaq\Constants; |
11 | 11 | |
12 | -require_once __DIR__ . '/header.php'; |
|
12 | +require_once __DIR__.'/header.php'; |
|
13 | 13 | |
14 | 14 | global $xoopsConfig, $xoopsModuleConfig, $xoopsModule; |
15 | 15 | |
16 | 16 | // At which record shall we start for the Categories |
17 | -$catstart = isset($_GET['catstart']) ? (int)$_GET['catstart'] : 0; |
|
17 | +$catstart = isset($_GET['catstart']) ? (int) $_GET['catstart'] : 0; |
|
18 | 18 | |
19 | 19 | // At which record shall we start for the FAQs |
20 | -$start = isset($_GET['start']) ? (int)$_GET['start'] : 0; |
|
20 | +$start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
21 | 21 | |
22 | 22 | // Creating the category handler object |
23 | 23 | $categoryHandler = \XoopsModules\Smartfaq\Helper::getInstance()->getHandler('Category'); |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | |
47 | 47 | $GLOBALS['xoopsOption']['template_main'] = 'smartfaq_index.tpl'; |
48 | 48 | |
49 | -require_once XOOPS_ROOT_PATH . '/header.php'; |
|
50 | -require_once __DIR__ . '/footer.php'; |
|
49 | +require_once XOOPS_ROOT_PATH.'/header.php'; |
|
50 | +require_once __DIR__.'/footer.php'; |
|
51 | 51 | |
52 | 52 | //get all categories for future reference |
53 | 53 | $allcategories = $categoryHandler->getObjects(null, true); |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | if (isset($totalQnas[$subcat_id]) && $totalQnas[$subcat_id] > 0) { |
70 | 70 | if (isset($last_qnaObj[$subcat_id])) { |
71 | 71 | $subcat->setVar('last_faqid', $last_qnaObj[$subcat_id]->getVar('faqid')); |
72 | - $subcat->setVar('last_question_link', "<a href='faq.php?faqid=" . $last_qnaObj[$subcat_id]->getVar('faqid') . "'>" . $last_qnaObj[$subcat_id]->question(50) . '</a>'); |
|
72 | + $subcat->setVar('last_question_link', "<a href='faq.php?faqid=".$last_qnaObj[$subcat_id]->getVar('faqid')."'>".$last_qnaObj[$subcat_id]->question(50).'</a>'); |
|
73 | 73 | } |
74 | 74 | $subcat->setVar('faqcount', $totalQnas[$subcat_id]); |
75 | 75 | $categories[$cat_id]['subcats'][$subcat_id] = $subcat->toArray(null, true); |
76 | - $total += $totalQnas[$subcat_id]; |
|
76 | + $total += $totalQnas[$subcat_id]; |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | } |
106 | 106 | |
107 | 107 | $memberHandler = xoops_getHandler('member'); |
108 | - $users = $memberHandler->getUsers(new \Criteria('uid', '(' . implode(',', array_keys($userids)) . ')', 'IN'), true); |
|
108 | + $users = $memberHandler->getUsers(new \Criteria('uid', '('.implode(',', array_keys($userids)).')', 'IN'), true); |
|
109 | 109 | for ($i = 0; $i < $totalQnasOnPage; ++$i) { |
110 | 110 | $faq = $faqsObj[$i]->toArray(null, $allcategories); |
111 | 111 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | } |
119 | 119 | } |
120 | 120 | // Language constants |
121 | -$moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
121 | +$moduleName = & $myts->displayTarea($xoopsModule->getVar('name')); |
|
122 | 122 | $xoopsTpl->assign([ |
123 | 123 | 'lang_on' => _MD_SF_ON, |
124 | 124 | 'lang_postedby' => _MD_SF_POSTEDBY, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | 'lang_hits' => _MD_SF_HITS |
129 | 129 | ]); |
130 | 130 | |
131 | -$moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
131 | +$moduleName = & $myts->displayTarea($xoopsModule->getVar('name')); |
|
132 | 132 | $xoopsTpl->assign('lang_mainhead', sprintf(_MD_SF_OPEN_WELCOME, $xoopsConfig['sitename'])); |
133 | 133 | $xoopsTpl->assign('lang_mainintro', $myts->displayTarea($xoopsModuleConfig['openquestionintromsg'], 1)); |
134 | 134 | $xoopsTpl->assign('lang_total', _MD_SF_TOTAL_QUESTIONS); |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $xoopsTpl->assign('lang_description', _MD_SF_DESCRIPTION); |
137 | 137 | $xoopsTpl->assign('lang_category', _MD_SF_CATEGORY); |
138 | 138 | $xoopsTpl->assign('sectionname', $moduleName); |
139 | -$xoopsTpl->assign('whereInSection', "<a href='index.php'>" . $moduleName . '</a> > ' . _MD_SF_OPEN_SECTION); |
|
139 | +$xoopsTpl->assign('whereInSection', "<a href='index.php'>".$moduleName.'</a> > '._MD_SF_OPEN_SECTION); |
|
140 | 140 | |
141 | 141 | $xoopsTpl->assign('displayFull', false); |
142 | 142 | $xoopsTpl->assign('displaylastfaqs', $xoopsModuleConfig['displaylastfaqs']); |
@@ -152,25 +152,25 @@ discard block |
||
152 | 152 | $xoopsTpl->assign('lang_category', _MD_SF_CATEGORY); |
153 | 153 | |
154 | 154 | // Category Navigation Bar |
155 | -require_once XOOPS_ROOT_PATH . '/class/pagenav.php'; |
|
155 | +require_once XOOPS_ROOT_PATH.'/class/pagenav.php'; |
|
156 | 156 | $pagenav = new \XoopsPageNav($totalCategories, $xoopsModuleConfig['catperpage'], $catstart, 'catstart', ''); |
157 | 157 | if (1 == $xoopsModuleConfig['useimagenavpage']) { |
158 | - $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">' . $pagenav->renderImageNav() . '</div>'); |
|
158 | + $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">'.$pagenav->renderImageNav().'</div>'); |
|
159 | 159 | } else { |
160 | - $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">' . $pagenav->renderNav() . '</div>'); |
|
160 | + $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">'.$pagenav->renderNav().'</div>'); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | // FAQ Navigation Bar |
164 | 164 | $pagenav = new \XoopsPageNav($totalFaqs, $xoopsModuleConfig['indexperpage'], $start, 'start', ''); |
165 | 165 | if (1 == $xoopsModuleConfig['useimagenavpage']) { |
166 | - $xoopsTpl->assign('navbar', '<div style="text-align:right;">' . $pagenav->renderImageNav() . '</div>'); |
|
166 | + $xoopsTpl->assign('navbar', '<div style="text-align:right;">'.$pagenav->renderImageNav().'</div>'); |
|
167 | 167 | } else { |
168 | - $xoopsTpl->assign('navbar', '<div style="text-align:right;">' . $pagenav->renderNav() . '</div>'); |
|
168 | + $xoopsTpl->assign('navbar', '<div style="text-align:right;">'.$pagenav->renderNav().'</div>'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | // Page Title Hack by marcan |
172 | 172 | $module_name = $myts->htmlSpecialChars($xoopsModule->getVar('name')); |
173 | -$xoopsTpl->assign('xoops_pagetitle', $module_name . ' - ' . $category->getVar('name')); |
|
173 | +$xoopsTpl->assign('xoops_pagetitle', $module_name.' - '.$category->getVar('name')); |
|
174 | 174 | // End Page Title Hack by marcan |
175 | 175 | |
176 | -require_once XOOPS_ROOT_PATH . '/footer.php'; |
|
176 | +require_once XOOPS_ROOT_PATH.'/footer.php'; |
@@ -49,94 +49,94 @@ |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | switch ($op) { |
52 | - case 'post': |
|
52 | + case 'post': |
|
53 | 53 | |
54 | - global $xoopsUser, $xoopsConfig, $xoopsModule, $xoopsModuleConfig, $xoopsDB; |
|
54 | + global $xoopsUser, $xoopsConfig, $xoopsModule, $xoopsModuleConfig, $xoopsDB; |
|
55 | 55 | |
56 | - $newFaqObj = $faqHandler->create(); |
|
56 | + $newFaqObj = $faqHandler->create(); |
|
57 | 57 | |
58 | - if (!$xoopsUser) { |
|
59 | - if (1 == $xoopsModuleConfig['anonpost']) { |
|
60 | - $uid = 0; |
|
58 | + if (!$xoopsUser) { |
|
59 | + if (1 == $xoopsModuleConfig['anonpost']) { |
|
60 | + $uid = 0; |
|
61 | + } else { |
|
62 | + redirect_header('index.php', 3, _NOPERM); |
|
63 | + } |
|
61 | 64 | } else { |
62 | - redirect_header('index.php', 3, _NOPERM); |
|
65 | + $uid = $xoopsUser->uid(); |
|
63 | 66 | } |
64 | - } else { |
|
65 | - $uid = $xoopsUser->uid(); |
|
66 | - } |
|
67 | - |
|
68 | - // Putting the values about the FAQ in the FAQ object |
|
69 | - $newFaqObj->setVar('categoryid', $_POST['categoryid']); |
|
70 | - $newFaqObj->setVar('uid', $uid); |
|
71 | - $newFaqObj->setVar('question', $_POST['question']); |
|
72 | - $notifypub = isset($_POST['notifypub']) ? $_POST['notifypub'] : 0; |
|
73 | - $newFaqObj->setVar('notifypub', $notifypub); |
|
74 | - |
|
75 | - // Setting the status of the FAQ |
|
76 | - if (1 == $xoopsModuleConfig['autoapprove_request']) { |
|
77 | - $newFaqObj->setVar('status', Constants::SF_STATUS_OPENED); |
|
78 | - } else { |
|
79 | - $newFaqObj->setVar('status', Constants::SF_STATUS_ASKED); |
|
80 | - } |
|
81 | - |
|
82 | - // Storing the FAQ object in the database |
|
83 | - if (!$newFaqObj->store()) { |
|
84 | - redirect_header('javascript:history.go(-1)', 3, _MD_SF_REQUEST_ERROR . Smartfaq\Utility::formatErrors($newFaqObj->getErrors())); |
|
85 | - } |
|
86 | - |
|
87 | - // Get the cateopry object related to that FAQ |
|
88 | - // If autoapprove_requested |
|
89 | - if (1 == $xoopsModuleConfig['autoapprove_request']) { |
|
90 | - // We do not not subscribe user to notification on publish since we publish it right away |
|
91 | - |
|
92 | - // Send notifications |
|
93 | - $newFaqObj->sendNotifications([Constants::SF_NOT_QUESTION_PUBLISHED]); |
|
94 | - |
|
95 | - $redirect_msg = _MD_SF_REQUEST_RECEIVED_AND_PUBLISHED; |
|
96 | - } else { |
|
97 | - // Subscribe the user to On Published notification, if requested |
|
98 | - if (1 == $notifypub) { |
|
99 | - require_once XOOPS_ROOT_PATH . '/include/notification_constants.php'; |
|
100 | - $notificationHandler = xoops_getHandler('notification'); |
|
101 | - $notificationHandler->subscribe('question', $newFaqObj->faqid(), 'approved', XOOPS_NOTIFICATION_MODE_SENDONCETHENDELETE); |
|
67 | + |
|
68 | + // Putting the values about the FAQ in the FAQ object |
|
69 | + $newFaqObj->setVar('categoryid', $_POST['categoryid']); |
|
70 | + $newFaqObj->setVar('uid', $uid); |
|
71 | + $newFaqObj->setVar('question', $_POST['question']); |
|
72 | + $notifypub = isset($_POST['notifypub']) ? $_POST['notifypub'] : 0; |
|
73 | + $newFaqObj->setVar('notifypub', $notifypub); |
|
74 | + |
|
75 | + // Setting the status of the FAQ |
|
76 | + if (1 == $xoopsModuleConfig['autoapprove_request']) { |
|
77 | + $newFaqObj->setVar('status', Constants::SF_STATUS_OPENED); |
|
78 | + } else { |
|
79 | + $newFaqObj->setVar('status', Constants::SF_STATUS_ASKED); |
|
80 | + } |
|
81 | + |
|
82 | + // Storing the FAQ object in the database |
|
83 | + if (!$newFaqObj->store()) { |
|
84 | + redirect_header('javascript:history.go(-1)', 3, _MD_SF_REQUEST_ERROR . Smartfaq\Utility::formatErrors($newFaqObj->getErrors())); |
|
102 | 85 | } |
103 | - // Send notifications |
|
104 | - $newFaqObj->sendNotifications([Constants::SF_NOT_QUESTION_SUBMITTED]); |
|
105 | 86 | |
106 | - $redirect_msg = _MD_SF_REQUEST_RECEIVED_NEED_APPROVAL; |
|
107 | - } |
|
87 | + // Get the cateopry object related to that FAQ |
|
88 | + // If autoapprove_requested |
|
89 | + if (1 == $xoopsModuleConfig['autoapprove_request']) { |
|
90 | + // We do not not subscribe user to notification on publish since we publish it right away |
|
91 | + |
|
92 | + // Send notifications |
|
93 | + $newFaqObj->sendNotifications([Constants::SF_NOT_QUESTION_PUBLISHED]); |
|
94 | + |
|
95 | + $redirect_msg = _MD_SF_REQUEST_RECEIVED_AND_PUBLISHED; |
|
96 | + } else { |
|
97 | + // Subscribe the user to On Published notification, if requested |
|
98 | + if (1 == $notifypub) { |
|
99 | + require_once XOOPS_ROOT_PATH . '/include/notification_constants.php'; |
|
100 | + $notificationHandler = xoops_getHandler('notification'); |
|
101 | + $notificationHandler->subscribe('question', $newFaqObj->faqid(), 'approved', XOOPS_NOTIFICATION_MODE_SENDONCETHENDELETE); |
|
102 | + } |
|
103 | + // Send notifications |
|
104 | + $newFaqObj->sendNotifications([Constants::SF_NOT_QUESTION_SUBMITTED]); |
|
105 | + |
|
106 | + $redirect_msg = _MD_SF_REQUEST_RECEIVED_NEED_APPROVAL; |
|
107 | + } |
|
108 | 108 | |
109 | - //redirect_header("javascript:history.go(-2)", 3, $redirect_msg); |
|
110 | - redirect_header('index.php', 2, $redirect_msg); |
|
111 | - break; |
|
109 | + //redirect_header("javascript:history.go(-2)", 3, $redirect_msg); |
|
110 | + redirect_header('index.php', 2, $redirect_msg); |
|
111 | + break; |
|
112 | 112 | |
113 | - case 'form': |
|
114 | - default: |
|
113 | + case 'form': |
|
114 | + default: |
|
115 | 115 | |
116 | - global $xoopsUser, $myts; |
|
116 | + global $xoopsUser, $myts; |
|
117 | 117 | |
118 | - $GLOBALS['xoopsOption']['template_main'] = 'smartfaq_submit.tpl'; |
|
119 | - require_once XOOPS_ROOT_PATH . '/header.php'; |
|
120 | - require_once __DIR__ . '/footer.php'; |
|
118 | + $GLOBALS['xoopsOption']['template_main'] = 'smartfaq_submit.tpl'; |
|
119 | + require_once XOOPS_ROOT_PATH . '/header.php'; |
|
120 | + require_once __DIR__ . '/footer.php'; |
|
121 | 121 | |
122 | - $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
|
122 | + $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
|
123 | 123 | |
124 | - $moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
125 | - $xoopsTpl->assign('whereInSection', $moduleName); |
|
126 | - $xoopsTpl->assign('lang_submit', _MD_SF_REQUEST); |
|
124 | + $moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
125 | + $xoopsTpl->assign('whereInSection', $moduleName); |
|
126 | + $xoopsTpl->assign('lang_submit', _MD_SF_REQUEST); |
|
127 | 127 | |
128 | - $xoopsTpl->assign('lang_intro_title', _MD_SF_REQUEST); |
|
129 | - $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY . "<b>$name</b>, " . $myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
128 | + $xoopsTpl->assign('lang_intro_title', _MD_SF_REQUEST); |
|
129 | + $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY . "<b>$name</b>, " . $myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
130 | 130 | |
131 | - require_once __DIR__ . '/include/request.inc.php'; |
|
131 | + require_once __DIR__ . '/include/request.inc.php'; |
|
132 | 132 | |
133 | - $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
|
133 | + $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
|
134 | 134 | |
135 | - $sectionname = $myts->htmlSpecialChars($xoopsModule->getVar('name')); |
|
135 | + $sectionname = $myts->htmlSpecialChars($xoopsModule->getVar('name')); |
|
136 | 136 | |
137 | - require_once __DIR__ . '/include/request.inc.php'; |
|
137 | + require_once __DIR__ . '/include/request.inc.php'; |
|
138 | 138 | |
139 | - require_once XOOPS_ROOT_PATH . '/footer.php'; |
|
139 | + require_once XOOPS_ROOT_PATH . '/footer.php'; |
|
140 | 140 | |
141 | - break; |
|
141 | + break; |
|
142 | 142 | } |
@@ -9,8 +9,8 @@ discard block |
||
9 | 9 | use XoopsModules\Smartfaq; |
10 | 10 | use XoopsModules\Smartfaq\Constants; |
11 | 11 | |
12 | -require_once __DIR__ . '/header.php'; |
|
13 | -require_once XOOPS_ROOT_PATH . '/header.php'; |
|
12 | +require_once __DIR__.'/header.php'; |
|
13 | +require_once XOOPS_ROOT_PATH.'/header.php'; |
|
14 | 14 | |
15 | 15 | global $xoopsUser, $xoopsConfig, $xoopsModuleConfig, $xoopsModule; |
16 | 16 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | // Storing the FAQ object in the database |
83 | 83 | if (!$newFaqObj->store()) { |
84 | - redirect_header('javascript:history.go(-1)', 3, _MD_SF_REQUEST_ERROR . Smartfaq\Utility::formatErrors($newFaqObj->getErrors())); |
|
84 | + redirect_header('javascript:history.go(-1)', 3, _MD_SF_REQUEST_ERROR.Smartfaq\Utility::formatErrors($newFaqObj->getErrors())); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // Get the cateopry object related to that FAQ |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | } else { |
97 | 97 | // Subscribe the user to On Published notification, if requested |
98 | 98 | if (1 == $notifypub) { |
99 | - require_once XOOPS_ROOT_PATH . '/include/notification_constants.php'; |
|
99 | + require_once XOOPS_ROOT_PATH.'/include/notification_constants.php'; |
|
100 | 100 | $notificationHandler = xoops_getHandler('notification'); |
101 | 101 | $notificationHandler->subscribe('question', $newFaqObj->faqid(), 'approved', XOOPS_NOTIFICATION_MODE_SENDONCETHENDELETE); |
102 | 102 | } |
@@ -116,27 +116,27 @@ discard block |
||
116 | 116 | global $xoopsUser, $myts; |
117 | 117 | |
118 | 118 | $GLOBALS['xoopsOption']['template_main'] = 'smartfaq_submit.tpl'; |
119 | - require_once XOOPS_ROOT_PATH . '/header.php'; |
|
120 | - require_once __DIR__ . '/footer.php'; |
|
119 | + require_once XOOPS_ROOT_PATH.'/header.php'; |
|
120 | + require_once __DIR__.'/footer.php'; |
|
121 | 121 | |
122 | 122 | $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
123 | 123 | |
124 | - $moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
124 | + $moduleName = & $myts->displayTarea($xoopsModule->getVar('name')); |
|
125 | 125 | $xoopsTpl->assign('whereInSection', $moduleName); |
126 | 126 | $xoopsTpl->assign('lang_submit', _MD_SF_REQUEST); |
127 | 127 | |
128 | 128 | $xoopsTpl->assign('lang_intro_title', _MD_SF_REQUEST); |
129 | - $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY . "<b>$name</b>, " . $myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
129 | + $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY."<b>$name</b>, ".$myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
130 | 130 | |
131 | - require_once __DIR__ . '/include/request.inc.php'; |
|
131 | + require_once __DIR__.'/include/request.inc.php'; |
|
132 | 132 | |
133 | 133 | $name = $xoopsUser ? ucwords($xoopsUser->getVar('uname')) : 'Anonymous'; |
134 | 134 | |
135 | 135 | $sectionname = $myts->htmlSpecialChars($xoopsModule->getVar('name')); |
136 | 136 | |
137 | - require_once __DIR__ . '/include/request.inc.php'; |
|
137 | + require_once __DIR__.'/include/request.inc.php'; |
|
138 | 138 | |
139 | - require_once XOOPS_ROOT_PATH . '/footer.php'; |
|
139 | + require_once XOOPS_ROOT_PATH.'/footer.php'; |
|
140 | 140 | |
141 | 141 | break; |
142 | 142 | } |
@@ -9,13 +9,13 @@ discard block |
||
9 | 9 | use XoopsModules\Smartfaq; |
10 | 10 | use XoopsModules\Smartfaq\Constants; |
11 | 11 | |
12 | -require_once __DIR__ . '/header.php'; |
|
12 | +require_once __DIR__.'/header.php'; |
|
13 | 13 | |
14 | 14 | // At which record shall we start for the Categories |
15 | -$catstart = isset($_GET['catstart']) ? (int)$_GET['catstart'] : 0; |
|
15 | +$catstart = isset($_GET['catstart']) ? (int) $_GET['catstart'] : 0; |
|
16 | 16 | |
17 | 17 | // At which record shall we start for the FAQ |
18 | -$start = isset($_GET['start']) ? (int)$_GET['start'] : 0; |
|
18 | +$start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
19 | 19 | |
20 | 20 | // Creating the category handler object |
21 | 21 | /** @var \XoopsModules\Smartfaq\CategoryHandler $categoryHandler */ |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | |
43 | 43 | $GLOBALS['xoopsOption']['template_main'] = 'smartfaq_index.tpl'; |
44 | 44 | |
45 | -require_once XOOPS_ROOT_PATH . '/header.php'; |
|
46 | -require_once __DIR__ . '/footer.php'; |
|
45 | +require_once XOOPS_ROOT_PATH.'/header.php'; |
|
46 | +require_once __DIR__.'/footer.php'; |
|
47 | 47 | |
48 | 48 | // Creating the categories objects |
49 | -$categoriesObj =& $categoryHandler->getCategories($xoopsModuleConfig['catperpage'], $catstart); |
|
49 | +$categoriesObj = & $categoryHandler->getCategories($xoopsModuleConfig['catperpage'], $catstart); |
|
50 | 50 | // If no categories are found, exit |
51 | 51 | $totalCategoriesOnPage = count($categoriesObj); |
52 | 52 | if (0 == $totalCategoriesOnPage) { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | // Get the last smartfaq in each category |
67 | 67 | $last_qnaObj = $faqHandler->getLastPublishedByCat(); |
68 | 68 | } |
69 | -$lastfaqsize = (int)$xoopsModuleConfig['lastfaqsize']; |
|
69 | +$lastfaqsize = (int) $xoopsModuleConfig['lastfaqsize']; |
|
70 | 70 | $categories = []; |
71 | 71 | foreach ($categoriesObj as $cat_id => $category) { |
72 | 72 | $total = 0; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | if (isset($totalQnas[$subcat_id]) && $totalQnas[$subcat_id] > 0) { |
77 | 77 | if (isset($last_qnaObj[$subcat_id])) { |
78 | 78 | $subcat->setVar('last_faqid', $last_qnaObj[$subcat_id]->getVar('faqid')); |
79 | - $subcat->setVar('last_question_link', "<a href='faq.php?faqid=" . $last_qnaObj[$subcat_id]->getVar('faqid') . "'>" . $last_qnaObj[$subcat_id]->question($lastfaqsize) . '</a>'); |
|
79 | + $subcat->setVar('last_question_link', "<a href='faq.php?faqid=".$last_qnaObj[$subcat_id]->getVar('faqid')."'>".$last_qnaObj[$subcat_id]->question($lastfaqsize).'</a>'); |
|
80 | 80 | } |
81 | 81 | $subcat->setVar('faqcount', $totalQnas[$subcat_id]); |
82 | 82 | if ($xoopsModuleConfig['displaysubcatonindex']) { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | if ($total > 0) { |
95 | 95 | if (isset($last_qnaObj[$cat_id])) { |
96 | 96 | $category->setVar('last_faqid', $last_qnaObj[$cat_id]->getVar('faqid')); |
97 | - $category->setVar('last_question_link', "<a href='faq.php?faqid=" . $last_qnaObj[$cat_id]->getVar('faqid') . "'>" . $last_qnaObj[$cat_id]->question($lastfaqsize) . '</a>'); |
|
97 | + $category->setVar('last_question_link', "<a href='faq.php?faqid=".$last_qnaObj[$cat_id]->getVar('faqid')."'>".$last_qnaObj[$cat_id]->question($lastfaqsize).'</a>'); |
|
98 | 98 | } |
99 | 99 | $category->setVar('faqcount', $total); |
100 | 100 | if (!isset($categories[$cat_id])) { |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | } |
134 | 134 | |
135 | 135 | $memberHandler = xoops_getHandler('member'); |
136 | - $users = $memberHandler->getUsers(new \Criteria('uid', '(' . implode(',', array_keys($userids)) . ')', 'IN'), true); |
|
136 | + $users = $memberHandler->getUsers(new \Criteria('uid', '('.implode(',', array_keys($userids)).')', 'IN'), true); |
|
137 | 137 | for ($i = 0; $i < $totalQnasOnPage; ++$i) { |
138 | 138 | $faq = $faqsObj[$i]->toArray(null, $allcategories); |
139 | 139 | |
@@ -159,14 +159,14 @@ discard block |
||
159 | 159 | } |
160 | 160 | |
161 | 161 | // Language constants |
162 | -$moduleName =& $myts->displayTarea($xoopsModule->getVar('name')); |
|
162 | +$moduleName = & $myts->displayTarea($xoopsModule->getVar('name')); |
|
163 | 163 | $xoopsTpl->assign('whereInSection', $moduleName); |
164 | 164 | $xoopsTpl->assign('displaysubcatonindex', $xoopsModuleConfig['displaysubcatonindex']); |
165 | 165 | $xoopsTpl->assign('displaylastfaqs', $xoopsModuleConfig['displaylastfaqs']); |
166 | 166 | $xoopsTpl->assign('display_categoryname', true); |
167 | 167 | $xoopsTpl->assign('displayFull', 'full' === $xoopsModuleConfig['displaytype']); |
168 | 168 | |
169 | -$xoopsTpl->assign('lang_mainhead', _MD_SF_MAINHEAD . ' ' . $moduleName); |
|
169 | +$xoopsTpl->assign('lang_mainhead', _MD_SF_MAINHEAD.' '.$moduleName); |
|
170 | 170 | $xoopsTpl->assign('lang_mainintro', $myts->displayTarea($xoopsModuleConfig['indexwelcomemsg'], 1)); |
171 | 171 | $xoopsTpl->assign('lang_total', _MD_SF_TOTAL_SMARTFAQS); |
172 | 172 | $xoopsTpl->assign('lang_home', _MD_SF_HOME); |
@@ -185,20 +185,20 @@ discard block |
||
185 | 185 | $xoopsTpl->assign('lang_comments', _MD_SF_COMMENTS); |
186 | 186 | |
187 | 187 | // Category Navigation Bar |
188 | -require_once XOOPS_ROOT_PATH . '/class/pagenav.php'; |
|
188 | +require_once XOOPS_ROOT_PATH.'/class/pagenav.php'; |
|
189 | 189 | $pagenav = new \XoopsPageNav($totalCategories, $xoopsModuleConfig['catperpage'], $catstart, 'catstart', ''); |
190 | 190 | if (1 == $xoopsModuleConfig['useimagenavpage']) { |
191 | - $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">' . $pagenav->renderImageNav() . '</div>'); |
|
191 | + $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">'.$pagenav->renderImageNav().'</div>'); |
|
192 | 192 | } else { |
193 | - $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">' . $pagenav->renderNav() . '</div>'); |
|
193 | + $xoopsTpl->assign('catnavbar', '<div style="text-align:right;">'.$pagenav->renderNav().'</div>'); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | // FAQ Navigation Bar |
197 | 197 | $pagenav = new \XoopsPageNav($totalFaqs, $xoopsModuleConfig['indexperpage'], $start, 'start', ''); |
198 | 198 | if (1 == $xoopsModuleConfig['useimagenavpage']) { |
199 | - $xoopsTpl->assign('navbar', '<div style="text-align:right;">' . $pagenav->renderImageNav() . '</div>'); |
|
199 | + $xoopsTpl->assign('navbar', '<div style="text-align:right;">'.$pagenav->renderImageNav().'</div>'); |
|
200 | 200 | } else { |
201 | - $xoopsTpl->assign('navbar', '<div style="text-align:right;">' . $pagenav->renderNav() . '</div>'); |
|
201 | + $xoopsTpl->assign('navbar', '<div style="text-align:right;">'.$pagenav->renderNav().'</div>'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | // Page Title Hack by marcan |
@@ -206,4 +206,4 @@ discard block |
||
206 | 206 | $xoopsTpl->assign('xoops_pagetitle', $module_name); |
207 | 207 | // End Page Title Hack by marcan |
208 | 208 | |
209 | -require_once XOOPS_ROOT_PATH . '/footer.php'; |
|
209 | +require_once XOOPS_ROOT_PATH.'/footer.php'; |