You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
<?php
|
|
|
|
use Fuel\Core\Session;
|
|
use Fuel\Core\View;
|
|
|
|
class Controller_Settings_Libraries extends Controller_Settings
|
|
{
|
|
public function action_index()
|
|
{
|
|
$this->template->js_bottom = ['plex_alert.js', 'server_refresh.js'];
|
|
|
|
$body = View::forge('settings/libraries');
|
|
|
|
$user_id = Session::get('user')->id;
|
|
|
|
$libraries = Model_Library::find(function($query) use($user_id) {
|
|
$query
|
|
->select('library.*')
|
|
->join('server', 'LEFT')
|
|
->on('server.id', '=','library.server_id' )
|
|
->where('server.user_id', $user_id)
|
|
->and_where('server.disable', 0)
|
|
;
|
|
});
|
|
|
|
$body->set('libraries', $libraries);
|
|
$body->set('user', Session::get('user'));
|
|
|
|
$this->template->body = $body;
|
|
}
|
|
|
|
public function action_permissions()
|
|
{
|
|
$this->template->js_bottom = ['plex_alert.js'];
|
|
|
|
$body = View::forge('settings/libraries/permissions');
|
|
|
|
$library_id = $this->param('library_id');
|
|
|
|
$permissions = Model_Permission::find_all();
|
|
|
|
$body->set('permissions', $permissions);
|
|
$body->set('user', Session::get('user'));
|
|
|
|
$this->template->body = $body;
|
|
}
|
|
} |