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.
PlexShare/fuel/app/classes/controller/install.php

54 lines
1.8 KiB

<?php
use Fuel\Core\Controller;
use Fuel\Core\FuelException;
use Fuel\Core\Response;
use Fuel\Core\View;
use Fuel\Core\Asset;
class Controller_Install extends Controller
{
public function before()
{
parent::before();
$lock = Config::load('lock', true);
if($lock)
Response::redirect('/login');
}
public function action_index()
{
$view = View::forge('install/index');
$js = Asset::js('plex_alert.js');
$view->set_safe('end_js', $js);
$config_db = Config::load('db', true);
$config_db = $config_db['default'];
6 years ago
$view->set('db_host', isset($config_db['connection']['hostname']) ? $config_db['connection']['hostname'] : null);
$view->set('db_port', isset($config_db['connection']['port']) ? $config_db['connection']['port'] : null);
$view->set('db_database', isset($config_db['connection']['database']) ? $config_db['connection']['database'] : null);
$view->set('db_prefix', isset($config_db['table_prefix']) ? $config_db['table_prefix'] : null);
$view->set('db_username', isset($config_db['connection']['username']) ? $config_db['connection']['username'] : null);
$view->set('db_password', isset($config_db['connection']['password']) ? $config_db['connection']['password'] : null);
try {
$config_plex = Model_Server::find() ? Model_Server::find()[0] : null;
if($config_plex) {
$view->set('plex_url', $config_plex ? $config_plex->url : null);
$view->set('plex_port', $config_plex ? $config_plex->port : null);
$view->set('plex_token', $config_plex ? $config_plex->token : null);
}
}catch (FuelException $e){
//@TODO
}
return $view;
}
}