11 lines
231 B
PHP
11 lines
231 B
PHP
<?php
|
|
|
|
class Controller_logs extends Crunchbutton_Controller_Account {
|
|
public function init() {
|
|
// @permission
|
|
if (!c::admin()->permission()->check(['global','logs'])) {
|
|
return ;
|
|
}
|
|
c::view()->display('logs/index');
|
|
}
|
|
} |