扩展 codeigniters 控制器

发布于 2024-12-18 05:37:14 字数 332 浏览 1 评论 0原文

我有一个名为“admin”的控制器

class Admin extends CI_Controller {

,在管理控制器下我想要一系列控制器,例如:

class Settings extends CI_Controller {
class Preferences extends CI_Controller {

是否可以让这些控制器扩展管理控制器?

就像

class Settings extends Admin {

这可能吗?

I have a controller called 'admin'

class Admin extends CI_Controller {

and under the admin controller I want to have a series of controllers like:

class Settings extends CI_Controller {
class Preferences extends CI_Controller {

Is it possible to have these controllers extend the Admin controller?

like

class Settings extends Admin {

Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

池予 2024-12-25 05:37:14

是的,这是可能的。您只需在应用程序的 /core/ 目录中创建扩展控制器,如下所示:

class MY_Controller extends CI_Controller
{
...
}

然后,您可以在 / 中创建扩展 MY_Controller 的控制器。应用程序的controllers/目录,如下所示:

class SomeClass extends MY_Controller
{
...
}

注意文件命名约定

请在 CodeIgniter 用户指南中了解更多相关信息,了解如何扩展核心

Yes, it is possible. You just have to create your extended controller in the /core/ directory of your application, like so:

class MY_Controller extends CI_Controller
{
...
}

Then, you can create controllers that extend MY_Controller in the /controllers/ directory of your application, like so:

class SomeClass extends MY_Controller
{
...
}

Pay attention to the class and file naming convention.

Read more about it in the CodeIgniter User Guide, on how to extend the Core.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文