12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
|
|
class Controller_pay extends Crunchbutton_Controller_Account {
|
|
public function init() {
|
|
|
|
if (!c::admin()->permission()->check(['global'])) {
|
|
return ;
|
|
}
|
|
|
|
c::view()->display('pay/index');
|
|
}
|
|
} |