我正在使用Magento的M2e扩展。现在,我想在文件Ess_M2ePro_Adminhtml_ListingController
中调用类app/code/community/Ess/M2ePro/controllers/Adminhtml/ListingController.php
的方法。
但我不知道,怎么样。我无法创建对象或模型来访问类以使用这些方法。也许直接调用这个控制器方法并不是一个好主意,但在我的情况下(删除关联的magento产品到ebay列表),需要调用这些方法。
通常,这些操作是从magento后端调用的。我也试过创建一个admin_html会话,但目前我没有任何进一步的想法。
这是一个例子,看起来如何。我正在使用常规的PHP代码,没什么特别的:
class Ess_M2ePro_Adminhtml_ListingController extends Ess_M2ePro_Controller_Adminhtml_MainController
{
//#############################################
protected function _initAction()
{
/** removed **/
}
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('m2epro/listings/listing');
}
//#############################################
public function indexAction()
{
/** removed **/
}
//#############################################
public function searchAction()
{
/** removed **/
}
public function searchGridAction()
{
/** removed **/
}
public function lockListingNowAction()
{
$listingId = (int)$this->getRequest()->getParam('id');
$component = $this->getRequest()->getParam('component');
$lockItemParams = array(
'id' => $listingId,
'component' => $component
);
$lockItem = Mage::getModel('M2ePro/Listing_LockItem',$lockItemParams);
if (!$lockItem->isExist()) {
$lockItem->create();
}
exit();
}
}
我正在寻找类似的东西:
$test = Mage::getModel('M2ePro/Ess_M2ePro_Adminhtml_ListingController')->lockListingNowAction();
答案 0 :(得分:5)
您不应该从其他控制器调用方法。特别是在您的情况下,当您在方法结束时有exit
时
如果您在控制器中,则可以使用_forward
方法:
$this->_forward($action = 'lockListingNowAction', $controller = 'adminhtml_listing', $module = 'M2ePro', $params = array('id'=>$id)) //controller name may be different
但最简洁的方法是在帮助程序中获取所需的代码,并在两个控制器中调用该帮助程序中的代码。