Files
FHC-Core/application/controllers/components/Phrasen.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

23 lines
465 B
PHP
Executable File

<?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()));
}
}