本文整理汇总了PHP中Ess_M2ePro_Model_Component_Parent_Abstract类的典型用法代码示例。如果您正苦于以下问题:PHP Ess_M2ePro_Model_Component_Parent_Abstract类的具体用法?PHP Ess_M2ePro_Model_Component_Parent_Abstract怎么用?PHP Ess_M2ePro_Model_Component_Parent_Abstract使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Ess_M2ePro_Model_Component_Parent_Abstract类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: setParentObject
/**
* @param Ess_M2ePro_Model_Component_Parent_Abstract $object
*/
public function setParentObject(Ess_M2ePro_Model_Component_Parent_Abstract $object)
{
if (is_null($object->getId())) {
return;
}
$this->parentObject = $object;
}
开发者ID:giuseppemorelli,项目名称:magento-extension,代码行数:10,代码来源:Abstract.php
示例2: deleteInstance
public function deleteInstance()
{
$temp = parent::deleteInstance();
$temp && ($this->listingProductVariationModel = NULL);
$temp && ($this->magentoProductModel = NULL);
return $temp;
}
开发者ID:xiaoguizhidao,项目名称:ecommerce,代码行数:7,代码来源:Option.php
示例3: isLocked
public function isLocked()
{
if (parent::isLocked()) {
return true;
}
return $this->getChildObject()->isLocked();
}
开发者ID:newedge-media,项目名称:iwantmymeds,代码行数:7,代码来源:Item.php
示例4: isLocked
public function isLocked()
{
if (parent::isLocked()) {
return true;
}
return (bool) Mage::getModel('M2ePro/Listing')->getCollection()->addFieldToFilter('template_selling_format_id', $this->getId())->getSize();
}
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:7,代码来源:SellingFormat.php
示例5: isLocked
public function isLocked($onlyMainConditions = false)
{
if (!$onlyMainConditions && parent::isLocked()) {
return true;
}
return (bool) Mage::getModel('M2ePro/Template_General')->getCollection()->addFieldToFilter('account_id', $this->getId())->getSize();
}
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:7,代码来源:Account.php
示例6: isLocked
public function isLocked()
{
if (parent::isLocked()) {
return true;
}
return (bool) Mage::getModel('M2ePro/Listing_Product')->getCollection()->addFieldToFilter('listing_id', $this->getId())->addFieldToFilter('status', Ess_M2ePro_Model_Listing_Product::STATUS_LISTED)->getSize();
}
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:7,代码来源:Listing.php
示例7: deleteInstance
public function deleteInstance()
{
$temp = parent::deleteInstance();
$temp && ($this->accountModel = NULL);
$temp && ($this->marketplaceModel = NULL);
$temp && ($this->magentoProductModel = NULL);
return $temp;
}
开发者ID:giuseppemorelli,项目名称:magento-extension,代码行数:8,代码来源:Other.php
示例8: __construct
public function __construct()
{
$args = func_get_args();
empty($args[0]) && ($args[0] = array());
$params = $args[0];
$params['child_mode'] = Ess_M2ePro_Helper_Component_Ebay::NICK;
parent::__construct($params);
}
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:8,代码来源:Abstract.php
示例9: isLocked
public function isLocked()
{
if (parent::isLocked()) {
return true;
}
if ($this->getStatus() == self::STATUS_LISTED) {
return true;
}
return false;
}
开发者ID:xiaoguizhidao,项目名称:ecommerce,代码行数:10,代码来源:Product.php
示例10: isLocked
/**
* @return bool
* @throws Ess_M2ePro_Model_Exception_Logic
*/
public function isLocked()
{
if (parent::isLocked()) {
return true;
}
if ($this->isComponentModeEbay() && $this->getAccount()->getChildObject()->isModeSandbox()) {
return false;
}
if ($this->getStatus() == self::STATUS_LISTED) {
return true;
}
return false;
}
开发者ID:ReeceCrossland,项目名称:essua-m2epro,代码行数:17,代码来源:Product.php
示例11: delete
public function delete()
{
Mage::helper('M2ePro/Data_Cache_Permanent')->removeTagValues('template_sellingformat');
return parent::delete();
}
开发者ID:newedge-media,项目名称:iwantmymeds,代码行数:5,代码来源:SellingFormat.php
示例12: _construct
public function _construct()
{
parent::_construct();
$this->_init('M2ePro/Listing_Product_Variation');
}
开发者ID:ReeceCrossland,项目名称:essua-m2epro,代码行数:5,代码来源:Variation.php
注:本文中的Ess_M2ePro_Model_Component_Parent_Abstract类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论