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