1 | <?php |
||
25 | class Alumni extends Xoops\Module\Helper\HelperAbstract |
||
26 | { |
||
27 | /** |
||
28 | * Init the module |
||
29 | * |
||
30 | * @return null|void |
||
31 | */ |
||
32 | public function init() |
||
38 | |||
39 | /** |
||
40 | * @return Alumni |
||
41 | */ |
||
42 | public static function getInstance() |
||
46 | |||
47 | /** |
||
48 | * @return AlumnilistingHandler |
||
49 | */ |
||
50 | public function getListingHandler() |
||
54 | |||
55 | /** |
||
56 | * @return \Xoops\Core\Kernel\XoopsObjectHandler |
||
57 | */ |
||
58 | public function getCategoryHandler() |
||
62 | |||
63 | /** |
||
64 | * @return AlumniPermissionHandler |
||
65 | */ |
||
66 | public function getPermissionHandler() |
||
70 | |||
71 | /** |
||
72 | * @return AlumniGroupPermHandler |
||
73 | */ |
||
74 | public function getGrouppermHandler() |
||
78 | |||
79 | /** |
||
80 | * @return int|mixed |
||
81 | */ |
||
82 | public function getUserId() |
||
90 | } |
||
91 |
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.