尝试定位视图文件中执行的 Codeigniter 函数

发布于 2024-12-09 20:24:58 字数 202 浏览 0 评论 0原文

我试图找到下面的查询来自哪里。下面是在resource_update.php视图文件中执行的,但我无法从资源控制器中找到add_resource函数...

有什么原因吗?

$this->resources->add_resource($desc_arr, $desc_limit, $new_clients);

I'm trying to find where below query is coming from. Below is executed in view file which is resource_update.php but I cannot find add_resource function from resource controller...

Is there a reason why?

$this->resources->add_resource($desc_arr, $desc_limit, $new_clients);

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

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

发布评论

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

评论(1

酒几许 2024-12-16 20:24:58

检查“资源”是否实际上是库或模型。我认为我们不需要从视图调用另一个控制器(再次由控制器加载)。

即,资源是如何加载的?

$this->load->library('resources');

或者

$this->load->model('resources');

除了睡眠不足之外,我认为您没有理由不以这种方式找到该功能。 :)

如果它真的困扰你 - 尝试将你的 IDE 更改为 PhpDesigner、Netbeans 等。他们有一种很酷的方法来查找函数定义和代码提示。

干杯!

Check if "resources" is actually a library or a model. I don't think we ever need to call another controller from a view (which is again loaded by a controller).

i.e., How is resources loaded?

$this->load->library('resources');

or

$this->load->model('resources');

Other than lack of sleep, I see no reason why you should not find the function that way. :)

If its really bothering you - try Changing your IDE to PhpDesigner, Netbeans etc. They have a cool way of finding the function definition and code hinting.

Cheers!

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