| Conditions | 27 |
| Paths | 420 |
| Total Lines | 113 |
| Code Lines | 79 |
| Lines | 10 |
| Ratio | 8.85 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 38 | function news_search($queryarray, $andor, $limit, $offset, $userid) |
||
| 39 | { |
||
| 40 | global $xoopsDB, $xoopsUser; |
||
|
|
|||
| 41 | include_once XOOPS_ROOT_PATH . '/modules/news/include/functions.php'; |
||
| 42 | $restricted = news_getmoduleoption('restrictindex'); |
||
| 43 | $highlight = false; |
||
| 44 | $highlight = news_getmoduleoption('keywordshighlight'); // keywords highlighting |
||
| 45 | |||
| 46 | $moduleHandler = xoops_getHandler('module'); |
||
| 47 | $module = $moduleHandler->getByDirname('news'); |
||
| 48 | $modid = $module->getVar('mid'); |
||
| 49 | $searchparam = ''; |
||
| 50 | |||
| 51 | $gperm_handler = xoops_getHandler('groupperm'); |
||
| 52 | if (is_object($xoopsUser)) { |
||
| 53 | $groups = $xoopsUser->getGroups(); |
||
| 54 | } else { |
||
| 55 | $groups = XOOPS_GROUP_ANONYMOUS; |
||
| 56 | } |
||
| 57 | |||
| 58 | $sql = |
||
| 59 | 'SELECT storyid, topicid, uid, title, created FROM ' . $xoopsDB->prefix('news_stories') . ' WHERE (published>0 AND published<=' . time() . ') AND (expired = 0 OR expired > ' . time() . ') '; |
||
| 60 | |||
| 61 | if ($userid != 0) { |
||
| 62 | $sql .= ' AND uid=' . $userid . ' '; |
||
| 63 | } |
||
| 64 | // because count() returns 1 even if a supplied variable |
||
| 65 | // is not an array, we must check if $querryarray is really an array |
||
| 66 | if (is_array($queryarray) && $count = count($queryarray)) { |
||
| 67 | $sql .= " AND ((hometext LIKE '%$queryarray[0]%' OR bodytext LIKE '%$queryarray[0]%' OR title LIKE '%$queryarray[0]%' OR keywords LIKE '%$queryarray[0]%' OR description LIKE '%$queryarray[0]%')"; |
||
| 68 | for ($i = 1; $i < $count; ++$i) { |
||
| 69 | $sql .= " $andor "; |
||
| 70 | $sql .= "(hometext LIKE '%$queryarray[$i]%' OR bodytext LIKE '%$queryarray[$i]%' OR title LIKE '%$queryarray[$i]%' OR keywords LIKE '%$queryarray[$i]%' OR description LIKE '%$queryarray[$i]%')"; |
||
| 71 | } |
||
| 72 | $sql .= ') '; |
||
| 73 | // keywords highlighting |
||
| 74 | if ($highlight) { |
||
| 75 | $searchparam = '&keywords=' . urlencode(trim(implode(' ', $queryarray))); |
||
| 76 | } |
||
| 77 | } |
||
| 78 | |||
| 79 | $sql .= 'ORDER BY created DESC'; |
||
| 80 | $result = $xoopsDB->query($sql, $limit, $offset); |
||
| 81 | $ret = array(); |
||
| 82 | $i = 0; |
||
| 83 | while ($myrow = $xoopsDB->fetchArray($result)) { |
||
| 84 | $display = true; |
||
| 85 | View Code Duplication | if ($modid && $gperm_handler) { |
|
| 86 | if ($restricted && !$gperm_handler->checkRight('news_view', $myrow['topicid'], $groups, $modid)) { |
||
| 87 | $display = false; |
||
| 88 | } |
||
| 89 | } |
||
| 90 | |||
| 91 | if ($display) { |
||
| 92 | $ret[$i]['image'] = 'assets/images/news.png'; |
||
| 93 | $ret[$i]['link'] = 'article.php?storyid=' . $myrow['storyid'] . '' . $searchparam; |
||
| 94 | $ret[$i]['title'] = $myrow['title']; |
||
| 95 | $ret[$i]['time'] = $myrow['created']; |
||
| 96 | $ret[$i]['uid'] = $myrow['uid']; |
||
| 97 | ++$i; |
||
| 98 | } |
||
| 99 | } |
||
| 100 | |||
| 101 | include_once XOOPS_ROOT_PATH . '/modules/news/config.php'; |
||
| 102 | $searchincomments = $cfg['config_search_comments']; |
||
| 103 | |||
| 104 | if ($searchincomments && (isset($limit) && $i <= $limit)) { |
||
| 105 | include_once XOOPS_ROOT_PATH . '/include/comment_constants.php'; |
||
| 106 | $ind = $i; |
||
| 107 | $sql = 'SELECT com_id, com_modid, com_itemid, com_created, com_uid, com_title, com_text, com_status FROM ' |
||
| 108 | . $xoopsDB->prefix('xoopscomments') |
||
| 109 | . " WHERE (com_id>0) AND (com_modid=$modid) AND (com_status=" |
||
| 110 | . XOOPS_COMMENT_ACTIVE |
||
| 111 | . ') '; |
||
| 112 | if ($userid != 0) { |
||
| 113 | $sql .= ' AND com_uid=' . $userid . ' '; |
||
| 114 | } |
||
| 115 | |||
| 116 | if (is_array($queryarray) && $count = count($queryarray)) { |
||
| 117 | $sql .= " AND ((com_title LIKE '%$queryarray[0]%' OR com_text LIKE '%$queryarray[0]%')"; |
||
| 118 | for ($i = 1; $i < $count; ++$i) { |
||
| 119 | $sql .= " $andor "; |
||
| 120 | $sql .= "(com_title LIKE '%$queryarray[$i]%' OR com_text LIKE '%$queryarray[$i]%')"; |
||
| 121 | } |
||
| 122 | $sql .= ') '; |
||
| 123 | } |
||
| 124 | $i = $ind; |
||
| 125 | $sql .= 'ORDER BY com_created DESC'; |
||
| 126 | $result = $xoopsDB->query($sql, $limit, $offset); |
||
| 127 | while ($myrow = $xoopsDB->fetchArray($result)) { |
||
| 128 | $display = true; |
||
| 129 | View Code Duplication | if ($modid && $gperm_handler) { |
|
| 130 | if ($restricted && !$gperm_handler->checkRight('news_view', $myrow['com_itemid'], $groups, $modid)) { |
||
| 131 | $display = false; |
||
| 132 | } |
||
| 133 | } |
||
| 134 | if ($i + 1 > $limit) { |
||
| 135 | $display = false; |
||
| 136 | } |
||
| 137 | |||
| 138 | if ($display) { |
||
| 139 | $ret[$i]['image'] = 'assets/images/news.png'; |
||
| 140 | $ret[$i]['link'] = 'article.php?storyid=' . $myrow['com_itemid'] . '' . $searchparam; |
||
| 141 | $ret[$i]['title'] = $myrow['com_title']; |
||
| 142 | $ret[$i]['time'] = $myrow['com_created']; |
||
| 143 | $ret[$i]['uid'] = $myrow['com_uid']; |
||
| 144 | ++$i; |
||
| 145 | } |
||
| 146 | } |
||
| 147 | } |
||
| 148 | |||
| 149 | return $ret; |
||
| 150 | } |
||
| 151 |
Instead of relying on
globalstate, we recommend one of these alternatives:1. Pass all data via parameters
2. Create a class that maintains your state