. */ if (!defined("BASEPATH")) exit("No direct script access allowed"); class CLI_Manager extends CLI_Controller { /** * */ public function __construct() { parent::__construct(); // Load libraries $this->load->library('FehlerUpdateLib'); } /** * */ public function installAll() { $this->fehlerupdatelib->installAll(); } /** * */ public function installFromCore() { $this->fehlerupdatelib->installFromCore(); } /** * */ public function installFrom($fehlerConfigDirectory) { $this->fehlerupdatelib->installFrom(urldecode($fehlerConfigDirectory)); } }