本文整理匯總了PHP中mage::GetModel方法的典型用法代碼示例。如果您正苦於以下問題:PHP mage::GetModel方法的具體用法?PHP mage::GetModel怎麽用?PHP mage::GetModel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mage
的用法示例。
在下文中一共展示了mage::GetModel方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getNonLinkedSuppliersAsCombo
/**
* Retourne la liste des Fournisseurs non liés au produit sous la forme d'un combo
*
*/
public function getNonLinkedSuppliersAsCombo($name = 'supplier')
{
$collection = mage::GetModel('Purchase/ProductSupplier')->getCollection()->addFieldToFilter('pps_product_id', $this->_product_id);
$t_ids = array();
$t_ids[] = -1;
foreach ($collection as $item) {
$t_ids[] = $item->getpps_supplier_num();
}
//Recupere la liste
$collection = mage::GetModel('Purchase/Supplier')->getCollection()->addFieldToFilter('sup_id', array('nin' => $t_ids));
//transforme en combo
$retour = '<select id="' . $name . '" name="' . $name . '">';
foreach ($collection as $item) {
$retour .= '<option value="' . $item->getId() . '">' . $item->getsup_name() . '</option>';
}
$retour .= '</select>';
//retour
return $retour;
}
示例2: getProducts
/**
* Retourne la liste des produits liés au fabricant
*
*/
public function getProducts()
{
$collection = mage::GetModel('Purchase/ProductManufacturer')->getCollection()->join('Catalog/Product', 'ppm_product_id=entity_id')->addFieldToFilter('ppm_manufacturer_num', $this->getManufacturer()->getId());
return $collection;
}
示例3: GetSupplierInformationAction
/**
* Retourne en ajax les informations sur l'association entre un produit et un supplier
*
*/
public function GetSupplierInformationAction()
{
//recupere l'objet
$object = mage::GetModel('Purchase/ProductSupplier')->load($this->getRequest()->getParam('pps_id'));
//retourne en ajax
$this->getResponse()->setHeader('Content-type', 'application/x-json');
$this->getResponse()->setBody($object->toJson());
}
示例4: DeleteContactAction
/**
* Supprime un contact
*
*/
public function DeleteContactAction()
{
//recupere l'objet
$object = mage::GetModel('Purchase/Contact')->load($this->getRequest()->getParam('pc_num'))->delete();
}