| Conditions | 10 |
| Paths | 108 |
| Total Lines | 63 |
| Code Lines | 42 |
| Lines | 0 |
| Ratio | 0 % |
| 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 declare(strict_types=1); |
||
| 42 | function b_xoopsfaq_random_show(array $options): array |
||
| 43 | {
|
||
| 44 | $moduleDirName = \basename(\dirname(__DIR__)); |
||
| 45 | $myts = \MyTextSanitizer::getInstance(); |
||
| 46 | |||
| 47 | /** @var Helper $helper */ |
||
| 48 | $helper = Helper::getInstance(); |
||
| 49 | $permHelper = new Permission($moduleDirName); |
||
| 50 | |||
| 51 | /** @var ContentsHandler $contentsHandler */ |
||
| 52 | $contentsHandler = $helper->getHandler('Contents');
|
||
| 53 | $block = []; |
||
| 54 | |||
| 55 | $criteria = new \CriteriaCompo(); |
||
| 56 | $criteria->add(new \Criteria('contents_active', Constants::ACTIVE, '='));
|
||
| 57 | |||
| 58 | // Filter out cats based on group permissions |
||
| 59 | $options[1] ??= [0]; |
||
| 60 | $cTu = $catsToUse = (false === mb_strpos((string)$options[1], ',')) ? (array)$options[1] : explode(',', (string)$options[1]);
|
||
| 61 | if (in_array(0, $catsToUse, true) || empty($catsToUse)) {
|
||
| 62 | // Get a list of all cats |
||
| 63 | /** @var CategoryHandler $categoryHandler */ |
||
| 64 | $categoryHandler = $helper->getHandler('Category');
|
||
| 65 | $catListArray = $categoryHandler->getList(); |
||
| 66 | $cTu = $catsToUse = array_keys($catListArray); |
||
| 67 | } |
||
| 68 | // Remove any cats this user doesn't have rights to view |
||
| 69 | foreach ($cTu as $key => $thisCat) {
|
||
| 70 | if (false === $permHelper->checkPermission('viewcat', $thisCat)) {
|
||
| 71 | unset($catsToUse[$key]); |
||
| 72 | } |
||
| 73 | } |
||
| 74 | if (!empty($catsToUse)) {
|
||
| 75 | $criteria->add(new \Criteria('contents_cid', '(' . implode(',', $catsToUse) . ')', 'IN'));
|
||
| 76 | } else {
|
||
| 77 | return $block; |
||
| 78 | } |
||
| 79 | $xpFaqObjArray = $contentsHandler->getAll($criteria); |
||
| 80 | $faqCount = (is_array($xpFaqObjArray) && !empty($xpFaqObjArray)) ? count($xpFaqObjArray) : 0; |
||
| 81 | |||
| 82 | if ($faqCount > 0) {
|
||
| 83 | $faqNum = array_rand($xpFaqObjArray, 1); |
||
| 84 | $xpFaqObj = $xpFaqObjArray[$faqNum]; |
||
| 85 | $faq = $myts->displayTarea($xpFaqObj->getVar('contents_title'));
|
||
| 86 | $txtAns = strip_tags((string)$xpFaqObj->getVar('contents_contents')); // get rid of html for block
|
||
| 87 | $faqAns = $myts->displayTarea(xoops_substr($txtAns, 0, $options[0]), 0, 0, 0, 0, 0); |
||
| 88 | /** @var CategoryHandler $categoryHandler */ |
||
| 89 | $categoryHandler = $helper->getHandler('Category');
|
||
| 90 | $catObj = $categoryHandler->get($xpFaqObj->getVar('contents_cid'));
|
||
| 91 | $cid = $catObj->getVar('category_id');
|
||
| 92 | $block = [ |
||
| 93 | 'title' => _MB_XOOPSFAQ_RANDOM_TITLE, |
||
| 94 | 'faq' => $faq, |
||
| 95 | 'faqans' => $faqAns, |
||
| 96 | 'morelink' => $helper->url('index.php?cat_id=' . $cid . '#q' . $xpFaqObj->getVar('contents_id')),
|
||
| 97 | 'linktxt' => _MB_XOOPSFAQ_SEE_MORE, |
||
| 98 | 'catlink' => $helper->url('index.php?cat_id=' . $cid),
|
||
| 99 | 'cattxt' => $catObj->getVar('category_title'),
|
||
| 100 | ]; |
||
| 101 | unset($xpFaqObj, $catObj); |
||
| 102 | } |
||
| 103 | |||
| 104 | return $block; |
||
| 105 | } |
||
| 137 |