尝试定位视图文件中执行的 Codeigniter 函数
我试图找到下面的查询来自哪里。下面是在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查“资源”是否实际上是库或模型。我认为我们不需要从视图调用另一个控制器(再次由控制器加载)。
即,资源是如何加载的?
或者
除了睡眠不足之外,我认为您没有理由不以这种方式找到该功能。 :)
如果它真的困扰你 - 尝试将你的 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?
or
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!