本文整理汇总了PHP中Mage_Downloadable_Model_Sample::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Downloadable_Model_Sample::getId方法的具体用法?PHP Mage_Downloadable_Model_Sample::getId怎么用?PHP Mage_Downloadable_Model_Sample::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Downloadable_Model_Sample
的用法示例。
在下文中一共展示了Mage_Downloadable_Model_Sample::getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: saveItemTitle
/**
* Save title of sample item in store scope
*
* @param Mage_Downloadable_Model_Sample $sampleObject
* @return Mage_Downloadable_Model_Mysql4_Sample
*/
public function saveItemTitle($sampleObject)
{
$stmt = $this->_getReadAdapter()->select()->from($this->getTable('downloadable/sample_title'))->where('sample_id = ?', $sampleObject->getId())->where('store_id = ?', $sampleObject->getStoreId());
if ($this->_getReadAdapter()->fetchOne($stmt)) {
$where = $this->_getReadAdapter()->quoteInto('sample_id = ?', $sampleObject->getId()) . ' AND ' . $this->_getReadAdapter()->quoteInto('store_id = ?', $sampleObject->getStoreId());
if ($sampleObject->getUseDefaultTitle()) {
$this->_getWriteAdapter()->delete($this->getTable('downloadable/sample_title'), $where);
} else {
$this->_getWriteAdapter()->update($this->getTable('downloadable/sample_title'), array('title' => $sampleObject->getTitle()), $where);
}
} else {
if (!$sampleObject->getUseDefaultTitle()) {
$this->_getWriteAdapter()->insert($this->getTable('downloadable/sample_title'), array('sample_id' => $sampleObject->getId(), 'store_id' => $sampleObject->getStoreId(), 'title' => $sampleObject->getTitle()));
}
}
return $this;
}
示例2: deleteItems
/**
* Delete data by item(s)
*
* @param Mage_Downloadable_Model_Sample|array|int $items
* @return Mage_Downloadable_Model_Resource_Sample
*/
public function deleteItems($items)
{
$writeAdapter = $this->_getWriteAdapter();
$where = '';
if ($items instanceof Mage_Downloadable_Model_Sample) {
$where = array('sample_id = ?' => $items->getId());
} else {
$where = array('sample_id in (?)' => $items);
}
if ($where) {
$writeAdapter->delete($this->getMainTable(), $where);
$writeAdapter->delete($this->getTable('downloadable/sample_title'), $where);
}
return $this;
}
示例3: deleteItems
/**
* Delete data by item(s)
*
* @param Mage_Downloadable_Model_Sample|array|int $items
* @return Mage_Downloadable_Model_Mysql4_Sample
*/
public function deleteItems($items)
{
$where = '';
if ($items instanceof Mage_Downloadable_Model_Sample) {
$where = $this->_getReadAdapter()->quoteInto('sample_id = ?', $items->getId());
} elseif (is_array($items)) {
$where = $this->_getReadAdapter()->quoteInto('sample_id in (?)', $items);
} else {
$where = $this->_getReadAdapter()->quoteInto('sample_id = ?', $items);
}
if ($where) {
$this->_getReadAdapter()->delete($this->getTable('downloadable/sample'), $where);
$this->_getReadAdapter()->delete($this->getTable('downloadable/sample_title'), $where);
}
return $this;
}