私は過去数日間、Zend Frameworkを学んできました。私は今の初心者レベルです。Zend Framework:新しいリードを作成する
私は、問題文を与えられている:
/* Create a new lead
*
* planId will be sent $_GET['planId'], the form should send the action to
* the same page
* a user should be logged in and he should be administrator of the plan
*
* @uses Plans_Model_Dao_Moderator::isAdmin
* @throws unauthorized exception, catch the exception in error controller
*/
私はそれを起動する方法を理解するためにウェブサイト上で利用できる全体のZendのチュートリアルを検索しました!それは本当に私の神経に乗っています。これに関して何か助けていただければ幸いです。
Zend_Controller_Plugin_ErrorHandlerでエラー処理を行うことはできますか?
おかげで、それは本当に役に立っている多く:
だから基本的には、
Plans_Model_Dao_Moderator::isAdmin
は次のようになります。 –