我想基于CodeIgniter 中的anchor()函数创建自己的名为anchor_admin()的函数。
我当时在想:
我在config.php文件中定义了管理路径,例如:
$config['base_url'] = '';
$config['base_url_admin'] = 'my-custom-admin-folder';
进而
我需要以某种方式创建一个扩展 anchor() 函数的新 anchor_admin() 函数。
所以不要输入:
<?php echo anchor('my-custom-admin-folder/gallery', 'Gallery', 'class="admin-link"'); ?>
我只会输入:
<?php echo anchor_admin('gallery', 'Gallery', 'class="admin-link"'); ?>
但输出总是:
<a href="http:/localhost/my-custom-admin-folder/gallery" class="admin-link">Gallery</a>
基本上我只需要在核心anchor()函数生成的url末尾添加配置变量$this->config->item('base_url_admin')。
怎么做?
我需要创建哪些文件以及放在哪里?
我想创建一个助手不是要走的路。
我应该创建一个库,还是可以将它作为一个函数放在我已经创建的应用程序核心文件夹中的 MY_Controller 文件中,并且我正在使用它来加载一些东西?