我认为这是一个相当容易的问题,但我只是没有在泽德框架中实现自动化。
基本上,我有标准的Zend项目,有申请/模型、申请/控制器、申请/调查目录。 我还增加了申请/格式目录,其中的类别将称为申请。 表格*
我如何与自动卸载者登记新目录?
......
Kim
我认为这是一个相当容易的问题,但我只是没有在泽德框架中实现自动化。
基本上,我有标准的Zend项目,有申请/模型、申请/控制器、申请/调查目录。 我还增加了申请/格式目录,其中的类别将称为申请。 表格*
我如何与自动卸载者登记新目录?
......
Kim
无需向汽车载体登记新目录。 如果你形成一种形式,那么它就应当研究这样的情况:
申请/格式/Myform.php
class Application_Form_Myform extends Zend_Form
{
public function init()
{
//Put your code here
}
}
那么,你就能够象你这样的形式(例如,你的控制者): ——
$myform = new Application_Form_Myform();
之后,泽德框架将自动向您提供这一类别。
手册中对。
摘录:-
Zend Framework从PEAR那里借了一种想法,即同档案系统有1:1级关系。 简言之,为了解决进入档案的道路,由名录分离器取代强调性质(“_”),然后添加“......”号。 例如,“Foo_Bar_Baz”类与档案系统中的“Foo/Bar/Baz.php”对应。 该假设还假设,这些班级可通过房保解决,包括(a)和(b)通过相对途径寻找包括_path的档案名称。
基本上说,轮船不需要在汽车上登记。 只要你遵循命名公约和适当的排队,它就能够在申请或图书馆/编辑的复印机中找到文件。
正在申请的缺省文件夹,其中一页是专门在<代码>中处理的特殊案件。 Zend_Application_Module_Autoloader:initDefaultResourceTypes(,不应与主要自动载荷机制混淆。
使用<代码>资源Loader:
$resourceLoader->addResourceTypes(array(
acl => array(
path => acls/ ,
namespace => Acl ,
),
form => array(
path => forms/ ,
namespace => Form ,
),
model => array(
path => models/ ,
namespace => Model ,
),
));
见。
泽斯德邮局在名称被定为具有外国性质(如“保”)和 com(”)的物品时,就放弃了一种例外(因为邮局(邮局)退回假)。 重新提出以下守则。
I have a Zend Framework application that is making use of jQuery UI. In my controllers, I am setting error/success messages with the FlashMessenger helper like this: // ExampleController.php $this-&...
I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...
我把我的用心从使用QQL转向MySQL。 它与凯科特合作,现在不工作,因为我已经改变,使用MySQL。 这里的错误信息是:
Is it possible to redirect the browser to nth step in the onepage checkout? If so, how would one go about doing it? I m working on a payment module and have a sort of "cancel" action that i would ...
Hey guys - here s a question on Zend Framework or better on MVC in general: I am asking myself for a quiet a long time now, if it is a good idea to push business objects (User, Team, etc.) to my ...
I m trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The name of the MySQL ...
I hope that this is a quick question to answer. I am developing a form using Zend_Form, I have a number of Zend_Dojo_Form_Element_Textboxs to add to this form dynamically. These are added from rows ...