Advertisement
Guest User

c

a guest
Oct 28th, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public function updateFieldAction()
  2. {
  3. $fieldId = (int) $this->getRequest()->getParam('id');
  4. $field = $this->getRequest()->getParam('field');
  5. if ($fieldId) {
  6. $model = Mage::getModel('modulename/model')->load($fieldId);
  7. $model->setField($field);
  8. $model->save();
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement