Move Kontakt-Controller to person folder

This commit is contained in:
Paminger
2016-04-11 06:40:37 +02:00
parent 27af06cbb0
commit 20ea242f35
3 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -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";
+12 -7
View File
@@ -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');
}
}