| Conditions | 4 |
| Paths | 4 |
| Total Lines | 17 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | h::cs_blogs_admin_general() |
||
| 22 | ); |
||
| 23 | } |
||
| 24 | static function browse_sections () { |
||
| 25 | $L = Language::prefix('blogs_'); |
||
| 26 | Page::instance() |
||
| 27 | ->title($L->browse_sections) |
||
| 28 | ->content( |
||
| 29 | h::cs_blogs_admin_sections_list() |
||
| 30 | ); |
||
| 31 | } |
||
| 32 | static function browse_posts () { |
||
| 33 | $L = Language::prefix('blogs_'); |
||
| 34 | Page::instance() |
||
| 35 | ->title($L->browse_posts) |
||
| 36 | ->content( |
||
| 37 | h::cs_blogs_admin_posts_list() |
||
| 38 | ); |
||
| 41 |