mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-21 22:19:27 +00:00
27 lines
399 B
PHP
27 lines
399 B
PHP
<?php
|
|
|
|
if (!defined("BASEPATH")) exit("No direct script access allowed");
|
|
|
|
class CLI_Manager extends CLI_Controller
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// Loads PhrasesLib
|
|
$this->load->library('PhrasesLib');
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function installFrom($phrasesDirectoryPath)
|
|
{
|
|
$this->phraseslib->installFrom(urldecode($phrasesDirectoryPath));
|
|
}
|
|
}
|
|
|