mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
24 lines
466 B
PHP
24 lines
466 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class Phrasen extends FHC_Controller
|
|
{
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
// Public methods
|
|
|
|
/**
|
|
* @param string $module
|
|
*/
|
|
public function loadModule($module)
|
|
{
|
|
$this->load->library('PhrasesLib', [$module], 'pj');
|
|
$this->outputJsonSuccess(json_decode($this->pj->getJSON()));
|
|
}
|
|
|
|
}
|