| 1 |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 |
|
| 3 |
class Wordpress_Shortcode_controller extends Backend_controller |
| 4 |
{ |
| 5 |
function index() |
| 6 |
{ |
| 7 |
$app = $this->config->item('nts_app'); |
| 8 |
$this->data[ 'shortcode' ] = '[' . $app . ']'; |
| 9 |
$this->set_include( 'shortcode', 'wordpress/admin' ); |
| 10 |
|
| 11 |
$this->load->view( $this->template, $this->data); |
| 12 |
} |
| 13 |
} |
| 14 |
|
| 15 |
/* End of file customers.php */ |
| 16 |
/* Location: ./application/controllers/admin/categories.php */ |