mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 17:09:37 +00:00
Move Kontakt-Controller to person folder
This commit is contained in:
@@ -75,7 +75,7 @@ class DBTools extends FHC_Controller
|
||||
public function index()
|
||||
{
|
||||
$result = "The following are the available command line interface commands\n\n";
|
||||
$result .= "php index.ci.php DBTools migrate [\"version_number\"] Run all migrations. "
|
||||
$result .= "php index.ci.php DBTools migrate [\"version_number\"] Run all migrations. ";
|
||||
$result .= "The version number is optional.\n";
|
||||
$result .= "php index.ci.php DBTools seed \"file_name\" Run the specified seed file.\n";
|
||||
|
||||
|
||||
@@ -21,20 +21,25 @@
|
||||
* @return some value on success.
|
||||
*/
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') || exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
/**
|
||||
* @class Rest_server
|
||||
* @brief Rest Server Controller
|
||||
*
|
||||
* A more detailed class description.
|
||||
*/
|
||||
class Rest_server extends FHC_Controller {
|
||||
|
||||
public function index()
|
||||
*/
|
||||
class Rest_server extends FHC_Controller
|
||||
{
|
||||
/**
|
||||
* Index Method for default function.
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->load->helper('url');
|
||||
|
||||
$this->load->view('rest_server');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user