mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
Removed never used rdf/Basic controller
This commit is contained in:
@@ -1,74 +0,0 @@
|
||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
class Basic extends CI_Controller
|
||||
{
|
||||
/**
|
||||
* Loading the rdf-Library and Form- and Url-Helper
|
||||
* @return void
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->load->library(array('rdf'));
|
||||
$this->load->helper('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* Load Basic View
|
||||
* @return void
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->load->library('Rdf');
|
||||
$d['title'] = '';
|
||||
$d['content'] = $this->load->view('rdf/basic', $d, true);
|
||||
$this->load->view('home', $d);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load Sparql-View
|
||||
* @return void
|
||||
*/
|
||||
public function sparql()
|
||||
{
|
||||
$this->load->library('Rdf');
|
||||
$d['title'] = '';
|
||||
$d['content'] = $this->load->view('rdf/basic_sparql', $d, true);
|
||||
$this->load->view('home', $d);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load foaf-View
|
||||
* @return void
|
||||
*/
|
||||
public function foafinfo()
|
||||
{
|
||||
$this->load->library('Rdf');
|
||||
$d['title'] = '';
|
||||
$d['content'] = $this->load->view('rdf/foafinfo', $d, true);
|
||||
$this->load->view('home', $d);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load foafmaker View
|
||||
* @return void
|
||||
*/
|
||||
public function foafmaker()
|
||||
{
|
||||
$d['title'] = '';
|
||||
$d['content'] = $this->load->view('rdf/foafmaker', $d, true);
|
||||
$this->load->view('home', $d);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load converter View
|
||||
* @return void
|
||||
*/
|
||||
public function converter()
|
||||
{
|
||||
$d['title'] = '';
|
||||
$d['content'] = $this->load->view('rdf/converter', $d, true);
|
||||
$this->load->view('home', $d);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user