Example #1
0
 /**
  * Update all applications "updated at" parameter with current date
  *
  * @param Mage_XmlConnect_Model_Application $model
  * @return Mage_XmlConnect_Model_Resource_Application
  */
 public function updateUpdatedAtParameter($model)
 {
     $this->_getWriteAdapter()->update($this->getMainTable(), array('updated_at' => $model->getUpdatedAt()));
     return $this;
 }