1
|
|
|
<?php |
|
|
|
|
2
|
|
|
/* |
3
|
|
|
You may not change or alter any portion of this comment or credits of |
4
|
|
|
supporting developers from this source code or any supporting source code |
5
|
|
|
which is considered copyrighted (c) material of the original comment or credit |
6
|
|
|
authors. |
7
|
|
|
|
8
|
|
|
This program is distributed in the hope that it will be useful, but |
9
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of |
10
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
11
|
|
|
*/ |
12
|
|
|
/** |
13
|
|
|
* Module: RandomQuote |
14
|
|
|
* |
15
|
|
|
* @category Module |
16
|
|
|
* @package randomquote |
17
|
|
|
* @author XOOPS Module Development Team |
18
|
|
|
* @author Mamba |
19
|
|
|
* @copyright {@link http://xoops.org 2001-2016 XOOPS Project} |
20
|
|
|
* @license {@link http://www.fsf.org/copyleft/gpl.html GNU public license} |
21
|
|
|
* @link http://xoops.org XOOPS |
22
|
|
|
* @since 2.00 |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
$moduleDirName = basename(dirname(__DIR__)); |
26
|
|
|
include_once $GLOBALS['xoops']->path("/modules/{$moduleDirName}/class/constants.php"); |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* |
30
|
|
|
* Show a random quote in a block |
31
|
|
|
* |
32
|
|
|
* @param array { |
33
|
|
|
* @param string [0] block type |
34
|
|
|
* @param int [1] number of quotes to display |
35
|
|
|
* } |
36
|
|
|
* |
37
|
|
|
* @return array { |
38
|
|
|
* array { |
39
|
|
|
* @param string [quote] |
40
|
|
|
* @param string [author] |
41
|
|
|
* } |
42
|
|
|
* } |
43
|
|
|
*/ |
44
|
|
|
function showRandomquoteBlockViews($options) |
45
|
|
|
{ |
46
|
|
|
$moduleDirName = basename(dirname(__DIR__)); |
47
|
|
|
|
48
|
|
|
// xoops_load('constants', 'randomquote'); |
|
|
|
|
49
|
|
|
|
50
|
|
|
$citas = array(); |
51
|
|
|
$type_block = $options[0]; |
52
|
|
|
$nb_quotes = (int)$options[1]; |
53
|
|
|
$length_title = (int)$options[2]; |
54
|
|
|
$quotesHandler = xoops_getmodulehandler('quotes', $moduleDirName); |
55
|
|
|
$criteria = new CriteriaCompo(); |
56
|
|
|
|
57
|
|
|
switch ($type_block) { |
58
|
|
|
case 'recent': |
59
|
|
|
$criteria->add(new Criteria('quote_status', RandomquoteConstants::STATUS_ONLINE)); |
60
|
|
|
$criteria->setSort('create_date'); |
61
|
|
|
$criteria->setOrder('DESC'); |
62
|
|
|
break; |
63
|
|
|
|
64
|
|
|
case 'day': |
65
|
|
|
$criteria->add(new Criteria('quote_status', RandomquoteConstants::STATUS_ONLINE)); |
66
|
|
|
$criteria->add(new Criteria('create_date', strtotime(date('Y/m/d')), '>=')); |
67
|
|
|
$criteria->add(new Criteria('create_date', strtotime(date('Y/m/d')) + 86400, '<=')); |
68
|
|
|
$criteria->setSort('create_date'); |
69
|
|
|
$criteria->setOrder('ASC'); |
70
|
|
|
// $criteria->setSort('RAND()'); |
|
|
|
|
71
|
|
|
break; |
72
|
|
|
|
73
|
|
|
case 'random': |
74
|
|
|
default: |
75
|
|
|
$criteria->add(new Criteria('quote_status', RandomquoteConstants::STATUS_ONLINE)); |
76
|
|
|
$criteria->setSort('RAND()'); |
77
|
|
|
break; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
if ((int)$nb_quotes > 0) { |
81
|
|
|
$criteria->setLimit($nb_quotes); |
82
|
|
|
} |
83
|
|
|
$quoteObjsArray = $quotesHandler->getAll($criteria); |
84
|
|
|
foreach ($quoteObjsArray as $thisQuote) { |
85
|
|
|
if ($length_title > 0) { |
86
|
|
|
$short_quote = xoops_substr($thisQuote->getVar('quote'), 0, $length_title, $trimmarker = '...'); |
87
|
|
|
} else { |
88
|
|
|
$short_quote = $thisQuote->getVar('quote'); |
89
|
|
|
} |
90
|
|
|
$citas[] = array('quote' => $short_quote, |
91
|
|
|
'author' => $thisQuote->getVar('author') |
92
|
|
|
); |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
return $citas; |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
/** |
99
|
|
|
* @param array $options Preferences config array |
100
|
|
|
* |
101
|
|
|
* @return string HTML form to edit module options |
102
|
|
|
*/ |
103
|
|
|
function editRandomquoteBlockViews($options) |
104
|
|
|
{ |
105
|
|
|
$quotes_arr = array(); |
|
|
|
|
106
|
|
|
$form = "" . _MB_RANDOMQUOTE_QUOTES_DISPLAY . "\n" |
107
|
|
|
. "<input type='hidden' name='options[0]' value='{$options[0]}'>\n" |
108
|
|
|
. "<input type='text' name='options[1]' value='{$options[1]}' size='3' maxlength='4'> <br>\n" |
109
|
|
|
. "" . _MB_RANDOMQUOTE_QUOTES_SHORTEN . " <input type='number' name='options[2]' value='{$options[2]} size='3' maxlength='5'' min='0' step='5'> " . _MB_RANDOMQUOTE_QUOTES_CHARACTERS . "<br><br>"; |
110
|
|
|
/* |
|
|
|
|
111
|
|
|
array_shift($options); |
112
|
|
|
array_shift($options); |
113
|
|
|
array_shift($options); |
114
|
|
|
$form .= "" . _MB_RANDOMQUOTE_QUOTES_CATTODISPLAY . "<br>\n" |
115
|
|
|
. "<select name='options[]' multiple='multiple' size='5'>\n" |
116
|
|
|
. "<option value='0'" . (false === array_search(0, $options) ? "" : " selected='selected'") . ">" . _MB_RANDOMQUOTE_QUOTES_ALLCAT . "</option>\n"; |
117
|
|
|
foreach (array_keys($quotes_arr) as $i) { |
118
|
|
|
$form .= "<option value='" . $quotes_arr[$i]->getVar('quotes_id') . "'" . (false === array_search($quotes_arr[$i]->getVar('quotes_id'), $options) ? '' : " selected='selected'") . ">" |
119
|
|
|
. $quotes_arr[$i]->getVar('quotes_title') . "</option>\n"; |
120
|
|
|
} |
121
|
|
|
$form .= "</select>\n"; |
122
|
|
|
*/ |
123
|
|
|
return $form; |
124
|
|
|
} |
125
|
|
|
|
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.