@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | public function get($id = null, $fields = null) |
| 50 | 50 | { |
| 51 | 51 | if ((int)$id > 0) { |
| 52 | - $sql = 'SELECT * FROM ' . $this->db->prefix('smartfaq_answers') . ' WHERE answerid=' . $id; |
|
| 52 | + $sql = 'SELECT * FROM '.$this->db->prefix('smartfaq_answers').' WHERE answerid='.$id; |
|
| 53 | 53 | if (!$result = $this->db->query($sql)) { |
| 54 | 54 | return false; |
| 55 | 55 | } |
@@ -177,11 +177,11 @@ discard block |
||
| 177 | 177 | { |
| 178 | 178 | $ret = []; |
| 179 | 179 | $limit = $start = 0; |
| 180 | - $sql = 'SELECT * FROM ' . $this->db->prefix('smartfaq_answers'); |
|
| 180 | + $sql = 'SELECT * FROM '.$this->db->prefix('smartfaq_answers'); |
|
| 181 | 181 | if (isset($criteria) && is_subclass_of($criteria, 'CriteriaElement')) { |
| 182 | - $sql .= ' ' . $criteria->renderWhere(); |
|
| 182 | + $sql .= ' '.$criteria->renderWhere(); |
|
| 183 | 183 | if ('' != $criteria->getSort()) { |
| 184 | - $sql .= ' ORDER BY ' . $criteria->getSort() . ' ' . $criteria->getOrder(); |
|
| 184 | + $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder(); |
|
| 185 | 185 | } |
| 186 | 186 | $limit = $criteria->getLimit(); |
| 187 | 187 | $start = $criteria->getStart(); |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | $answer = new Smartfaq\Answer(); |
| 196 | 196 | $answer->assignVars($myrow); |
| 197 | 197 | if (!$id_as_key) { |
| 198 | - $ret[] =& $answer; |
|
| 198 | + $ret[] = & $answer; |
|
| 199 | 199 | } else { |
| 200 | 200 | $ret[$myrow['answerid']] = $answer; |
| 201 | 201 | } |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | $criteria->setOrder($order); |
| 266 | 266 | $criteria->setLimit($limit); |
| 267 | 267 | $criteria->setStart($start); |
| 268 | - $ret =& $this->getObjects($criteria); |
|
| 268 | + $ret = & $this->getObjects($criteria); |
|
| 269 | 269 | |
| 270 | 270 | return $ret; |
| 271 | 271 | } |
@@ -278,9 +278,9 @@ discard block |
||
| 278 | 278 | */ |
| 279 | 279 | public function getCount(\CriteriaElement $criteria = null) |
| 280 | 280 | { |
| 281 | - $sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix('smartfaq_answers'); |
|
| 281 | + $sql = 'SELECT COUNT(*) FROM '.$this->db->prefix('smartfaq_answers'); |
|
| 282 | 282 | if (isset($criteria) && is_subclass_of($criteria, 'CriteriaElement')) { |
| 283 | - $sql .= ' ' . $criteria->renderWhere(); |
|
| 283 | + $sql .= ' '.$criteria->renderWhere(); |
|
| 284 | 284 | } |
| 285 | 285 | $result = $this->db->query($sql); |
| 286 | 286 | if (!$result) { |
@@ -299,10 +299,10 @@ discard block |
||
| 299 | 299 | */ |
| 300 | 300 | public function getCountByFAQ($criteria = null) |
| 301 | 301 | { |
| 302 | - $sql = 'SELECT faqid, COUNT(*) FROM ' . $this->db->prefix('smartfaq_answers'); |
|
| 302 | + $sql = 'SELECT faqid, COUNT(*) FROM '.$this->db->prefix('smartfaq_answers'); |
|
| 303 | 303 | if (isset($criteria) && is_subclass_of($criteria, 'CriteriaElement')) { |
| 304 | - $sql .= ' ' . $criteria->renderWhere(); |
|
| 305 | - $sql .= ' ' . $criteria->getGroupby(); |
|
| 304 | + $sql .= ' '.$criteria->renderWhere(); |
|
| 305 | + $sql .= ' '.$criteria->getGroupby(); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | //echo "<br>$sql<br>"; |
@@ -329,9 +329,9 @@ discard block |
||
| 329 | 329 | */ |
| 330 | 330 | public function deleteAll(\CriteriaElement $criteria = null, $force = true, $asObject = false) |
| 331 | 331 | { |
| 332 | - $sql = 'DELETE FROM ' . $this->db->prefix('smartfaq_answers'); |
|
| 332 | + $sql = 'DELETE FROM '.$this->db->prefix('smartfaq_answers'); |
|
| 333 | 333 | if (isset($criteria) && is_subclass_of($criteria, 'CriteriaElement')) { |
| 334 | - $sql .= ' ' . $criteria->renderWhere(); |
|
| 334 | + $sql .= ' '.$criteria->renderWhere(); |
|
| 335 | 335 | } |
| 336 | 336 | if (!$this->db->query($sql)) { |
| 337 | 337 | return false; |
@@ -351,10 +351,10 @@ discard block |
||
| 351 | 351 | */ |
| 352 | 352 | public function updateAll($fieldname, $fieldvalue, \CriteriaElement $criteria = null, $force = false) |
| 353 | 353 | { |
| 354 | - $set_clause = is_numeric($fieldvalue) ? $fieldname . ' = ' . $fieldvalue : $fieldname . ' = ' . $this->db->quoteString($fieldvalue); |
|
| 355 | - $sql = 'UPDATE ' . $this->db->prefix('smartfaq_answers') . ' SET ' . $set_clause; |
|
| 354 | + $set_clause = is_numeric($fieldvalue) ? $fieldname.' = '.$fieldvalue : $fieldname.' = '.$this->db->quoteString($fieldvalue); |
|
| 355 | + $sql = 'UPDATE '.$this->db->prefix('smartfaq_answers').' SET '.$set_clause; |
|
| 356 | 356 | if (isset($criteria) && is_subclass_of($criteria, 'CriteriaElement')) { |
| 357 | - $sql .= ' ' . $criteria->renderWhere(); |
|
| 357 | + $sql .= ' '.$criteria->renderWhere(); |
|
| 358 | 358 | } |
| 359 | 359 | //echo "<br>" . $sql . "<br>"; |
| 360 | 360 | if (!$this->db->queryF($sql)) { |
@@ -371,8 +371,8 @@ discard block |
||
| 371 | 371 | public function getLastPublishedByFaq($faqids) |
| 372 | 372 | { |
| 373 | 373 | $ret = []; |
| 374 | - $sql = 'SELECT faqid, answer, uid, datesub FROM ' . $this->db->prefix('smartfaq_answers') . ' |
|
| 375 | - WHERE faqid IN (' . implode(',', $faqids) . ') AND status = ' . Constants::SF_AN_STATUS_APPROVED . ' GROUP BY faqid'; |
|
| 374 | + $sql = 'SELECT faqid, answer, uid, datesub FROM '.$this->db->prefix('smartfaq_answers').' |
|
| 375 | + WHERE faqid IN (' . implode(',', $faqids).') AND status = '.Constants::SF_AN_STATUS_APPROVED.' GROUP BY faqid'; |
|
| 376 | 376 | $result = $this->db->query($sql); |
| 377 | 377 | if (!$result) { |
| 378 | 378 | return $ret; |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | while (false !== ($row = $this->db->fetchArray($result))) { |
| 381 | 381 | $answer = new Smartfaq\Answer(); |
| 382 | 382 | $answer->assignVars($row); |
| 383 | - $ret[$row['faqid']] =& $answer; |
|
| 383 | + $ret[$row['faqid']] = & $answer; |
|
| 384 | 384 | unset($answer); |
| 385 | 385 | } |
| 386 | 386 | |
@@ -6,16 +6,16 @@ discard block |
||
| 6 | 6 | * Licence: GNU |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -require_once __DIR__ . '/../../../include/cp_header.php'; |
|
| 9 | +require_once __DIR__.'/../../../include/cp_header.php'; |
|
| 10 | 10 | |
| 11 | -$op = 'go';//'start'; |
|
| 11 | +$op = 'go'; //'start'; |
|
| 12 | 12 | |
| 13 | 13 | if (isset($_POST['op']) && ('go' === $_POST['op'])) { |
| 14 | 14 | $op = $_POST['op']; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | if ('start' === $op) { |
| 18 | - require_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php'; |
|
| 18 | + require_once XOOPS_ROOT_PATH.'/class/xoopsformloader.php'; |
|
| 19 | 19 | |
| 20 | 20 | xoops_cp_header(); |
| 21 | 21 | |
@@ -44,41 +44,41 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | echo " <title>{module title}</title>\r\n"; |
| 46 | 46 | |
| 47 | - $resultC = $xoopsDB->queryF('SELECT * FROM ' . $xoopsDB->prefix('smartfaq_categories')); |
|
| 47 | + $resultC = $xoopsDB->queryF('SELECT * FROM '.$xoopsDB->prefix('smartfaq_categories')); |
|
| 48 | 48 | while (false !== ($arrC = $xoopsDB->fetchArray($resultC))) { |
| 49 | 49 | extract($arrC, EXTR_PREFIX_ALL, 'c'); |
| 50 | 50 | |
| 51 | 51 | echo " <qandadiv ID=\"c$c_categoryid\" Revision=\"$c_created\">\r\n"; |
| 52 | - echo ' <title>' . encodeText($c_name) . "</title>\r\n"; |
|
| 53 | - echo ' <para>' . encodeText($c_description) . "</para>\r\n"; |
|
| 52 | + echo ' <title>'.encodeText($c_name)."</title>\r\n"; |
|
| 53 | + echo ' <para>'.encodeText($c_description)."</para>\r\n"; |
|
| 54 | 54 | |
| 55 | - $resultQ = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('smartfaq_faq') . " where categoryid=$c_categoryid"); |
|
| 55 | + $resultQ = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('smartfaq_faq')." where categoryid=$c_categoryid"); |
|
| 56 | 56 | while (false !== ($arrQ = $xoopsDB->fetchArray($resultQ))) { |
| 57 | 57 | extract($arrQ, EXTR_PREFIX_ALL, 'q'); |
| 58 | 58 | |
| 59 | - echo " <qandaentry ID=\"q$q_faqid\" Revision=\"$q_datesub\" Condition=\"$q_html $q_smiley $q_xcodes\" XrefLabel=\"$q_modulelink $q_contextpage\" Vendor=\"" . getUserFullName($q_uid) . "\">\r\n"; |
|
| 59 | + echo " <qandaentry ID=\"q$q_faqid\" Revision=\"$q_datesub\" Condition=\"$q_html $q_smiley $q_xcodes\" XrefLabel=\"$q_modulelink $q_contextpage\" Vendor=\"".getUserFullName($q_uid)."\">\r\n"; |
|
| 60 | 60 | echo " <question>\r\n"; |
| 61 | - echo ' <para>' . encodeText($q_question) . "</para>\r\n"; |
|
| 61 | + echo ' <para>'.encodeText($q_question)."</para>\r\n"; |
|
| 62 | 62 | if (!empty($q_howdoi)) { |
| 63 | 63 | echo " <note Conformance=\"howdoi\">\r\n"; |
| 64 | 64 | echo " <title>{'How do I' from language file}</title>\r\n"; |
| 65 | - echo ' <para>' . encodeText($q_howdoi) . "</para>\r\n"; |
|
| 65 | + echo ' <para>'.encodeText($q_howdoi)."</para>\r\n"; |
|
| 66 | 66 | echo " </note>\r\n"; |
| 67 | 67 | } |
| 68 | 68 | if (!empty($q_diduno)) { |
| 69 | 69 | echo " <note Conformance=\"diduno\">\r\n"; |
| 70 | 70 | echo " <title>{'Did you know' from language file}</title>\r\n"; |
| 71 | - echo ' <para>' . encodeText($q_diduno) . "</para>\r\n"; |
|
| 71 | + echo ' <para>'.encodeText($q_diduno)."</para>\r\n"; |
|
| 72 | 72 | echo " </note>\r\n"; |
| 73 | 73 | } |
| 74 | 74 | echo " </question>\r\n"; |
| 75 | 75 | |
| 76 | - $resultA = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('smartfaq_answers') . " where answerid=$q_answerid"); |
|
| 76 | + $resultA = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('smartfaq_answers')." where answerid=$q_answerid"); |
|
| 77 | 77 | while (false !== ($arrA = $xoopsDB->fetchArray($resultA))) { |
| 78 | 78 | extract($arrA, EXTR_PREFIX_ALL, 'a'); |
| 79 | 79 | |
| 80 | - echo " <answer ID=\"a$a_answerid\" Revision=\"$a_datesub\" Vendor=\"" . getUserFullName($a_uid) . "\">\r\n"; |
|
| 81 | - echo ' <para>' . encodeText($a_answer) . "</para>\r\n"; |
|
| 80 | + echo " <answer ID=\"a$a_answerid\" Revision=\"$a_datesub\" Vendor=\"".getUserFullName($a_uid)."\">\r\n"; |
|
| 81 | + echo ' <para>'.encodeText($a_answer)."</para>\r\n"; |
|
| 82 | 82 | echo " </answer>\r\n"; |
| 83 | 83 | } |
| 84 | 84 | $xoopsDB->freeRecordSet($resultA); |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | use XoopsModules\Smartfaq; |
| 15 | 15 | use XoopsModules\Smartfaq\Constants; |
| 16 | 16 | |
| 17 | -require_once __DIR__ . '/admin_header.php'; |
|
| 17 | +require_once __DIR__.'/admin_header.php'; |
|
| 18 | 18 | |
| 19 | 19 | $importFromModuleName = 'XoopsFAQ'; |
| 20 | 20 | $scriptname = 'xoopsfaq.php'; |
@@ -27,33 +27,33 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | if ('start' === $op) { |
| 29 | 29 | xoops_cp_header(); |
| 30 | - require_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php'; |
|
| 30 | + require_once XOOPS_ROOT_PATH.'/class/xoopsformloader.php'; |
|
| 31 | 31 | |
| 32 | - $result = $xoopsDB->queryF('SELECT count(*) FROM ' . $xoopsDB->prefix('xoopsfaq_categories')); |
|
| 32 | + $result = $xoopsDB->queryF('SELECT count(*) FROM '.$xoopsDB->prefix('xoopsfaq_categories')); |
|
| 33 | 33 | list($totalCat) = $xoopsDB->fetchRow($result); |
| 34 | 34 | |
| 35 | 35 | Smartfaq\Utility::collapsableBar('bottomtable', 'bottomtableicon'); |
| 36 | - echo "<img id='bottomtableicon' src=" . XOOPS_URL . '/modules/' . $xoopsModule->dirname() . "/assets/images/icon/close12.gif alt=''></a> " . sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName) . '</h3>'; |
|
| 36 | + echo "<img id='bottomtableicon' src=".XOOPS_URL.'/modules/'.$xoopsModule->dirname()."/assets/images/icon/close12.gif alt=''></a> ".sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName).'</h3>'; |
|
| 37 | 37 | echo "<div id='bottomtable'>"; |
| 38 | 38 | |
| 39 | 39 | if (0 == $totalCat) { |
| 40 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . _AM_SF_IMPORT_NO_CATEGORY . '</span>'; |
|
| 40 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'._AM_SF_IMPORT_NO_CATEGORY.'</span>'; |
|
| 41 | 41 | } else { |
| 42 | - require_once XOOPS_ROOT_PATH . '/class/xoopstree.php'; |
|
| 42 | + require_once XOOPS_ROOT_PATH.'/class/xoopstree.php'; |
|
| 43 | 43 | |
| 44 | - $result = $xoopsDB->queryF('SELECT count(*) FROM ' . $xoopsDB->prefix('xoopsfaq_contents')); |
|
| 44 | + $result = $xoopsDB->queryF('SELECT count(*) FROM '.$xoopsDB->prefix('xoopsfaq_contents')); |
|
| 45 | 45 | list($totalFAQ) = $xoopsDB->fetchRow($result); |
| 46 | 46 | |
| 47 | 47 | if (0 == $totalFAQ) { |
| 48 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . sprintf(_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ, $importFromModuleName, $totalCat) . '</span>'; |
|
| 48 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'.sprintf(_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ, $importFromModuleName, $totalCat).'</span>'; |
|
| 49 | 49 | } else { |
| 50 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . sprintf(_AM_SF_IMPORT_MODULE_FOUND, $importFromModuleName, $totalCat, $totalFAQ) . '</span>'; |
|
| 50 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'.sprintf(_AM_SF_IMPORT_MODULE_FOUND, $importFromModuleName, $totalCat, $totalFAQ).'</span>'; |
|
| 51 | 51 | |
| 52 | - $form = new \XoopsThemeForm(_AM_SF_IMPORT_SETTINGS, 'import_form', XOOPS_URL . '/modules/smartfaq/admin/' . $scriptname); |
|
| 52 | + $form = new \XoopsThemeForm(_AM_SF_IMPORT_SETTINGS, 'import_form', XOOPS_URL.'/modules/smartfaq/admin/'.$scriptname); |
|
| 53 | 53 | |
| 54 | 54 | // Categories to be imported |
| 55 | 55 | $cat_cbox = new \XoopsFormCheckBox(sprintf(_AM_SF_IMPORT_CATEGORIES, $importFromModuleName), 'import_category', -1); |
| 56 | - $result = $xoopsDB->queryF('SELECT c.category_id, c.category_title, count(q.contents_id) FROM ' . $xoopsDB->prefix('xoopsfaq_categories') . ' AS c, ' . $xoopsDB->prefix('xoopsfaq_contents') . ' AS q WHERE c.category_id=q.category_id GROUP BY c.category_id ORDER BY category_order'); |
|
| 56 | + $result = $xoopsDB->queryF('SELECT c.category_id, c.category_title, count(q.contents_id) FROM '.$xoopsDB->prefix('xoopsfaq_categories').' AS c, '.$xoopsDB->prefix('xoopsfaq_contents').' AS q WHERE c.category_id=q.category_id GROUP BY c.category_id ORDER BY category_order'); |
|
| 57 | 57 | |
| 58 | 58 | while (false !== (list($cid, $cat_title, $count) = $xoopsDB->fetchRow($result))) { |
| 59 | 59 | $cat_cbox->addOption($cid, "$cat_title ($count)<br\>"); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | ob_end_clean(); |
| 69 | 69 | |
| 70 | 70 | // Auto-Approve |
| 71 | - $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_AUTOAPPROVE, 'autoaprove', 1, ' ' . _AM_SF_YES . '', ' ' . _AM_SF_NO . '')); |
|
| 71 | + $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_AUTOAPPROVE, 'autoaprove', 1, ' '._AM_SF_YES.'', ' '._AM_SF_NO.'')); |
|
| 72 | 72 | |
| 73 | 73 | // Submitted and answered by |
| 74 | 74 | $memberHandler = xoops_getHandler('member'); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $form->addElement($user_select); |
| 82 | 82 | |
| 83 | 83 | // Q&As can be commented? |
| 84 | - $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_ALLOWCOMMENTS, 'cancomment', 1, ' ' . _AM_SF_YES . '', ' ' . _AM_SF_NO . '')); |
|
| 84 | + $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_ALLOWCOMMENTS, 'cancomment', 1, ' '._AM_SF_YES.'', ' '._AM_SF_NO.'')); |
|
| 85 | 85 | |
| 86 | 86 | $group_list = $memberHandler->getGroupList(); |
| 87 | 87 | $groups_selected = []; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | if ('go' === $op) { |
| 108 | - require_once __DIR__ . '/admin_header.php'; |
|
| 108 | + require_once __DIR__.'/admin_header.php'; |
|
| 109 | 109 | |
| 110 | 110 | $import_category = (isset($_POST['import_category']) ? $_POST['import_category'] : null); |
| 111 | 111 | if (!$import_category) { |
@@ -115,9 +115,9 @@ discard block |
||
| 115 | 115 | xoops_cp_header(); |
| 116 | 116 | |
| 117 | 117 | Smartfaq\Utility::collapsableBar('bottomtable', 'bottomtableicon'); |
| 118 | - echo "<img id='bottomtableicon' src=" . XOOPS_URL . '/modules/' . $xoopsModule->dirname() . "/assets/images/icon/close12.gif alt=''></a> " . sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName) . '</h3>'; |
|
| 118 | + echo "<img id='bottomtableicon' src=".XOOPS_URL.'/modules/'.$xoopsModule->dirname()."/assets/images/icon/close12.gif alt=''></a> ".sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName).'</h3>'; |
|
| 119 | 119 | echo "<div id='bottomtable'>"; |
| 120 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . _AM_SF_IMPORT_RESULT . '</span>'; |
|
| 120 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'._AM_SF_IMPORT_RESULT.'</span>'; |
|
| 121 | 121 | |
| 122 | 122 | $cnt_imported_cat = 0; |
| 123 | 123 | $cnt_imported_faq = 0; |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | echo "Can Comment: $cancomment<br>"; |
| 147 | 147 | echo "Auto aprove: $autoaprove<br>";*/ |
| 148 | 148 | |
| 149 | - $resultCat = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('xoopsfaq_categories') . " where category_id in ($import_category_list) order by category_order"); |
|
| 149 | + $resultCat = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('xoopsfaq_categories')." where category_id in ($import_category_list) order by category_order"); |
|
| 150 | 150 | |
| 151 | 151 | while (false !== ($arrCat = $xoopsDB->fetchArray($resultCat))) { |
| 152 | 152 | extract($arrCat, EXTR_PREFIX_ALL, 'xcat'); |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | $categoryObj->setVar('name', $xcat_category_title); |
| 161 | 161 | |
| 162 | 162 | if (!$categoryObj->store(false)) { |
| 163 | - echo sprintf(_AM_SF_IMPORT_CATEGORY_ERROR, $xcat_name) . '<br>'; |
|
| 163 | + echo sprintf(_AM_SF_IMPORT_CATEGORY_ERROR, $xcat_name).'<br>'; |
|
| 164 | 164 | continue; |
| 165 | 165 | } |
| 166 | 166 | |
@@ -168,9 +168,9 @@ discard block |
||
| 168 | 168 | |
| 169 | 169 | ++$cnt_imported_cat; |
| 170 | 170 | |
| 171 | - echo sprintf(_AM_SF_IMPORT_CATEGORY_SUCCESS, $xcat_category_title) . "<br\>"; |
|
| 171 | + echo sprintf(_AM_SF_IMPORT_CATEGORY_SUCCESS, $xcat_category_title)."<br\>"; |
|
| 172 | 172 | |
| 173 | - $resultFAQ = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('xoopsfaq_contents') . " where category_id=$xcat_category_id order by contents_order"); |
|
| 173 | + $resultFAQ = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('xoopsfaq_contents')." where category_id=$xcat_category_id order by contents_order"); |
|
| 174 | 174 | while (false !== ($arrFAQ = $xoopsDB->fetchArray($resultFAQ))) { |
| 175 | 175 | extract($arrFAQ, EXTR_PREFIX_ALL, 'xfaq'); |
| 176 | 176 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | $faqObj->setVar('cancomment', $cancomment); |
| 199 | 199 | |
| 200 | 200 | if (!$faqObj->store(false)) { |
| 201 | - echo sprintf(' ' . _AM_SF_IMPORT_FAQ_ERROR, $xfaq_contents_title) . '<br>'; |
|
| 201 | + echo sprintf(' '._AM_SF_IMPORT_FAQ_ERROR, $xfaq_contents_title).'<br>'; |
|
| 202 | 202 | continue; |
| 203 | 203 | } else { |
| 204 | 204 | $answerObj->setVar('faqid', $faqObj->faqid()); |
@@ -207,10 +207,10 @@ discard block |
||
| 207 | 207 | $answerObj->setVar('status', Constants::SF_AN_STATUS_APPROVED); |
| 208 | 208 | |
| 209 | 209 | if (!$answerObj->store()) { |
| 210 | - echo sprintf(' ' . _AM_SF_IMPORT_FAQ_ERROR) . '<br>'; |
|
| 210 | + echo sprintf(' '._AM_SF_IMPORT_FAQ_ERROR).'<br>'; |
|
| 211 | 211 | continue; |
| 212 | 212 | } else { |
| 213 | - echo ' ' . sprintf(_AM_SF_IMPORTED_QUESTION, $faqObj->question(50)) . '<br>'; |
|
| 213 | + echo ' '.sprintf(_AM_SF_IMPORTED_QUESTION, $faqObj->question(50)).'<br>'; |
|
| 214 | 214 | ++$cnt_imported_faq; |
| 215 | 215 | } |
| 216 | 216 | } |
@@ -220,8 +220,8 @@ discard block |
||
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | echo 'Done.<br>'; |
| 223 | - echo sprintf(_AM_SF_IMPORTED_CATEGORIES, $cnt_imported_cat) . '<br>'; |
|
| 224 | - echo sprintf(_AM_SF_IMPORTED_QUESTIONS, $cnt_imported_faq) . '<br>'; |
|
| 223 | + echo sprintf(_AM_SF_IMPORTED_CATEGORIES, $cnt_imported_cat).'<br>'; |
|
| 224 | + echo sprintf(_AM_SF_IMPORTED_QUESTIONS, $cnt_imported_faq).'<br>'; |
|
| 225 | 225 | |
| 226 | 226 | exit(); |
| 227 | 227 | } |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | use XoopsModules\Smartfaq; |
| 14 | 14 | use XoopsModules\Smartfaq\Constants; |
| 15 | 15 | |
| 16 | -require_once __DIR__ . '/admin_header.php'; |
|
| 16 | +require_once __DIR__.'/admin_header.php'; |
|
| 17 | 17 | |
| 18 | 18 | $importFromModuleName = 'WF-FAQ'; |
| 19 | 19 | $scriptname = 'wffaq.php'; |
@@ -25,33 +25,33 @@ discard block |
||
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | if ('start' === $op) { |
| 28 | - require_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php'; |
|
| 28 | + require_once XOOPS_ROOT_PATH.'/class/xoopsformloader.php'; |
|
| 29 | 29 | xoops_cp_header(); |
| 30 | - $result = $xoopsDB->queryF('SELECT count(*) FROM ' . $xoopsDB->prefix('faqcategories')); |
|
| 30 | + $result = $xoopsDB->queryF('SELECT count(*) FROM '.$xoopsDB->prefix('faqcategories')); |
|
| 31 | 31 | list($totalCat) = $xoopsDB->fetchRow($result); |
| 32 | 32 | |
| 33 | 33 | Smartfaq\Utility::collapsableBar('bottomtable', 'bottomtableicon'); |
| 34 | - echo "<img id='bottomtableicon' src=" . XOOPS_URL . '/modules/' . $xoopsModule->dirname() . "/assets/images/icon/close12.gif alt=''></a> " . sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName) . '</h3>'; |
|
| 34 | + echo "<img id='bottomtableicon' src=".XOOPS_URL.'/modules/'.$xoopsModule->dirname()."/assets/images/icon/close12.gif alt=''></a> ".sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName).'</h3>'; |
|
| 35 | 35 | echo "<div id='bottomtable'>"; |
| 36 | 36 | |
| 37 | 37 | if (0 == $totalCat) { |
| 38 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . _AM_SF_IMPORT_NO_CATEGORY . '</span>'; |
|
| 38 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'._AM_SF_IMPORT_NO_CATEGORY.'</span>'; |
|
| 39 | 39 | } else { |
| 40 | - require_once XOOPS_ROOT_PATH . '/class/xoopstree.php'; |
|
| 40 | + require_once XOOPS_ROOT_PATH.'/class/xoopstree.php'; |
|
| 41 | 41 | |
| 42 | - $result = $xoopsDB->queryF('SELECT count(*) FROM ' . $xoopsDB->prefix('faqtopics')); |
|
| 42 | + $result = $xoopsDB->queryF('SELECT count(*) FROM '.$xoopsDB->prefix('faqtopics')); |
|
| 43 | 43 | list($totalFAQ) = $xoopsDB->fetchRow($result); |
| 44 | 44 | |
| 45 | 45 | if (0 == $totalFAQ) { |
| 46 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . sprintf(_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ, $importFromModuleName, $totalCat) . '</span>'; |
|
| 46 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'.sprintf(_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ, $importFromModuleName, $totalCat).'</span>'; |
|
| 47 | 47 | } else { |
| 48 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . sprintf(_AM_SF_IMPORT_MODULE_FOUND, $importFromModuleName, $totalCat, $totalFAQ) . '</span>'; |
|
| 48 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'.sprintf(_AM_SF_IMPORT_MODULE_FOUND, $importFromModuleName, $totalCat, $totalFAQ).'</span>'; |
|
| 49 | 49 | |
| 50 | - $form = new \XoopsThemeForm(_AM_SF_IMPORT_SETTINGS, 'import_form', XOOPS_URL . '/modules/smartfaq/admin/' . $scriptname); |
|
| 50 | + $form = new \XoopsThemeForm(_AM_SF_IMPORT_SETTINGS, 'import_form', XOOPS_URL.'/modules/smartfaq/admin/'.$scriptname); |
|
| 51 | 51 | |
| 52 | 52 | // Categories to be imported |
| 53 | 53 | $cat_cbox = new \XoopsFormCheckBox(sprintf(_AM_SF_IMPORT_CATEGORIES, $importFromModuleName), 'import_category', -1); |
| 54 | - $result = $xoopsDB->queryF('SELECT c.catID, c.name, count(t.topicID) FROM ' . $xoopsDB->prefix('faqcategories') . ' AS c, ' . $xoopsDB->prefix('faqtopics') . ' AS t WHERE c.catID=t.catID GROUP BY t.catID ORDER BY c.weight'); |
|
| 54 | + $result = $xoopsDB->queryF('SELECT c.catID, c.name, count(t.topicID) FROM '.$xoopsDB->prefix('faqcategories').' AS c, '.$xoopsDB->prefix('faqtopics').' AS t WHERE c.catID=t.catID GROUP BY t.catID ORDER BY c.weight'); |
|
| 55 | 55 | while (false !== (list($cid, $cat_title, $count) = $xoopsDB->fetchRow($result))) { |
| 56 | 56 | $cat_cbox->addOption($cid, "$cat_title ($count)<br\>"); |
| 57 | 57 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | ob_end_clean(); |
| 66 | 66 | |
| 67 | 67 | // Auto-Approve |
| 68 | - $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_AUTOAPPROVE, 'autoaprove', 1, ' ' . _AM_SF_YES . '', ' ' . _AM_SF_NO . '')); |
|
| 68 | + $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_AUTOAPPROVE, 'autoaprove', 1, ' '._AM_SF_YES.'', ' '._AM_SF_NO.'')); |
|
| 69 | 69 | |
| 70 | 70 | // Submitted and answered by |
| 71 | 71 | $memberHandler = xoops_getHandler('member'); |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | $form->addElement($user_select); |
| 79 | 79 | |
| 80 | 80 | // Q&As can be commented? |
| 81 | - $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_ALLOWCOMMENTS, 'cancomment', 1, ' ' . _AM_SF_YES . '', ' ' . _AM_SF_NO . '')); |
|
| 81 | + $form->addElement(new \XoopsFormRadioYN(_AM_SF_IMPORT_ALLOWCOMMENTS, 'cancomment', 1, ' '._AM_SF_YES.'', ' '._AM_SF_NO.'')); |
|
| 82 | 82 | $group_list = $memberHandler->getGroupList(); |
| 83 | 83 | $groups_selected = []; |
| 84 | 84 | $groups_checkbox = new \XoopsFormCheckBox(_AM_SF_IMPORT_PERMISSIONS, 'groups_read'); |
@@ -107,13 +107,13 @@ discard block |
||
| 107 | 107 | redirect_header($scriptname, 2, _AM_SF_NOCATSELECTED); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - require_once __DIR__ . '/admin_header.php'; |
|
| 110 | + require_once __DIR__.'/admin_header.php'; |
|
| 111 | 111 | xoops_cp_header(); |
| 112 | 112 | |
| 113 | 113 | Smartfaq\Utility::collapsableBar('bottomtable', 'bottomtableicon'); |
| 114 | - echo "<img id='bottomtableicon' src=" . XOOPS_URL . '/modules/' . $xoopsModule->dirname() . "/assets/images/icon/close12.gif alt=''></a> " . sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName) . '</h3>'; |
|
| 114 | + echo "<img id='bottomtableicon' src=".XOOPS_URL.'/modules/'.$xoopsModule->dirname()."/assets/images/icon/close12.gif alt=''></a> ".sprintf(_AM_SF_IMPORT_FROM, $importFromModuleName).'</h3>'; |
|
| 115 | 115 | echo "<div id='bottomtable'>"; |
| 116 | - echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">' . _AM_SF_IMPORT_RESULT . '</span>'; |
|
| 116 | + echo '<span style="color: #567; margin: 3px 0 12px 0; font-size: small; display: block; ">'._AM_SF_IMPORT_RESULT.'</span>'; |
|
| 117 | 117 | |
| 118 | 118 | $cnt_imported_cat = 0; |
| 119 | 119 | $cnt_imported_faq = 0; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | echo "Can Comment: $cancomment<br>"; |
| 143 | 143 | echo "Auto aprove: $autoaprove<br>";*/ |
| 144 | 144 | |
| 145 | - $resultCat = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('faqcategories') . " where catID in ($import_category_list) order by weight"); |
|
| 145 | + $resultCat = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('faqcategories')." where catID in ($import_category_list) order by weight"); |
|
| 146 | 146 | |
| 147 | 147 | while (false !== ($arrCat = $xoopsDB->fetchArray($resultCat))) { |
| 148 | 148 | extract($arrCat, EXTR_PREFIX_ALL, 'wfc'); |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | $categoryObj->setVar('description', $wfc_description); |
| 158 | 158 | |
| 159 | 159 | if (!$categoryObj->store(false)) { |
| 160 | - echo sprintf(_AM_SF_IMPORT_CATEGORY_ERROR, $xcat_name) . '<br>'; |
|
| 160 | + echo sprintf(_AM_SF_IMPORT_CATEGORY_ERROR, $xcat_name).'<br>'; |
|
| 161 | 161 | continue; |
| 162 | 162 | } |
| 163 | 163 | |
@@ -165,9 +165,9 @@ discard block |
||
| 165 | 165 | |
| 166 | 166 | ++$cnt_imported_cat; |
| 167 | 167 | |
| 168 | - echo sprintf(_AM_SF_IMPORT_CATEGORY_SUCCESS, $wfc_name) . "<br\>"; |
|
| 168 | + echo sprintf(_AM_SF_IMPORT_CATEGORY_SUCCESS, $wfc_name)."<br\>"; |
|
| 169 | 169 | |
| 170 | - $resultFAQ = $xoopsDB->queryF('select * from ' . $xoopsDB->prefix('faqtopics') . " where catID=$wfc_catID order by weight"); |
|
| 170 | + $resultFAQ = $xoopsDB->queryF('select * from '.$xoopsDB->prefix('faqtopics')." where catID=$wfc_catID order by weight"); |
|
| 171 | 171 | while (false !== ($arrFAQ = $xoopsDB->fetchArray($resultFAQ))) { |
| 172 | 172 | extract($arrFAQ, EXTR_PREFIX_ALL, 'wft'); |
| 173 | 173 | |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | $faqObj->setVar('exacturl', 0); |
| 200 | 200 | |
| 201 | 201 | if (!$faqObj->store(false)) { |
| 202 | - echo sprintf(' ' . _AM_SF_IMPORT_FAQ_ERROR, $wft_question) . '<br>'; |
|
| 202 | + echo sprintf(' '._AM_SF_IMPORT_FAQ_ERROR, $wft_question).'<br>'; |
|
| 203 | 203 | continue; |
| 204 | 204 | } else { |
| 205 | 205 | $answerObj->setVar('faqid', $faqObj->faqid()); |
@@ -208,10 +208,10 @@ discard block |
||
| 208 | 208 | $answerObj->setVar('status', Constants::SF_AN_STATUS_APPROVED); |
| 209 | 209 | |
| 210 | 210 | if (!$answerObj->store()) { |
| 211 | - echo sprintf(' ' . _AM_SF_IMPORT_FAQ_ERROR) . '<br>'; |
|
| 211 | + echo sprintf(' '._AM_SF_IMPORT_FAQ_ERROR).'<br>'; |
|
| 212 | 212 | continue; |
| 213 | 213 | } else { |
| 214 | - echo ' ' . sprintf(_AM_SF_IMPORTED_QUESTION, $faqObj->question(50)) . '<br>'; |
|
| 214 | + echo ' '.sprintf(_AM_SF_IMPORTED_QUESTION, $faqObj->question(50)).'<br>'; |
|
| 215 | 215 | ++$cnt_imported_faq; |
| 216 | 216 | } |
| 217 | 217 | } |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | echo 'Done.<br>'; |
| 224 | - echo sprintf(_AM_SF_IMPORTED_CATEGORIES, $cnt_imported_cat) . '<br>'; |
|
| 225 | - echo sprintf(_AM_SF_IMPORTED_QUESTIONS, $cnt_imported_faq) . '<br>'; |
|
| 224 | + echo sprintf(_AM_SF_IMPORTED_CATEGORIES, $cnt_imported_cat).'<br>'; |
|
| 225 | + echo sprintf(_AM_SF_IMPORTED_QUESTIONS, $cnt_imported_faq).'<br>'; |
|
| 226 | 226 | |
| 227 | 227 | exit(); |
| 228 | 228 | } |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | $searchcat = new \XoopsFormSelect(_MD_WB_CATEGORY, 'categoryID', $categoryID); |
| 22 | 22 | $searchcat->addOption('0', _MD_WB_ALLOFTHEM); |
| 23 | 23 | |
| 24 | - $resultcat = $xoopsDB->queryF('SELECT categoryID, name FROM ' . $xoopsDB->prefix('wbcategories') . ' ORDER BY categoryID'); |
|
| 24 | + $resultcat = $xoopsDB->queryF('SELECT categoryID, name FROM '.$xoopsDB->prefix('wbcategories').' ORDER BY categoryID'); |
|
| 25 | 25 | |
| 26 | 26 | while (false !== (list($categoryID, $name) = $xoopsDB->fetchRow($resultcat))) { |
| 27 | 27 | $searchcat->addOption('categoryID', "$categoryID : $name"); |