| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | static function admin___get_settings () { |
||
| 16 | $module_data = Config::instance()->module('Blogs'); |
||
| 17 | return [ |
||
| 18 | 'posts_per_page' => $module_data->posts_per_page, |
||
| 19 | 'max_sections' => $module_data->max_sections, |
||
| 20 | 'enable_comments' => $module_data->enable_comments, |
||
| 21 | 'new_posts_only_from_admins' => $module_data->new_posts_only_from_admins, |
||
| 22 | 'allow_iframes_without_content' => $module_data->allow_iframes_without_content |
||
| 23 | ]; |
||
| 24 | } |
||
| 25 | /** |
||
| 40 |