Esempio n. 1
0
 public static function permissions()
 {
     $templateData = array('template' => 'accounts/permissions', 'title' => 'Migrate - Permissions', 'bodyId' => 'accounts-update', 'styles' => array('accounts.css'), 'scripts' => array('accounts.js'), 'heading' => 'Select your services', 'description' => 'These are the current available services that can be used in our operations. You can select any time which services are we allowed to use. If you roll-over a service name you can see all the permissions and what action can we performe.', 'services' => ServicesModel::withPermissions(), 'servicesSoon' => ServicesModel::all(array('status' => ServicesModel::STATUS_SOON))->toArray(), 'selectedServices' => UsersServicesModel::all(array('user_id' => $_SESSION['current']['username']['id']))->column('service_id'), 'skipUrl' => 'accounts/add', 'step' => 1);
     \Render::layout('template', $templateData);
 }
Esempio n. 2
0
 public static function oAuthScopes()
 {
     return implode(' ', ServicesModel::all(array('mandatory' => true, 'status' => ServicesModel::STATUS_ACTIVE))->column('scopes'));
 }