本文整理匯總了PHP中ArticlePeer::retrieveByPks方法的典型用法代碼示例。如果您正苦於以下問題:PHP ArticlePeer::retrieveByPks方法的具體用法?PHP ArticlePeer::retrieveByPks怎麽用?PHP ArticlePeer::retrieveByPks使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ArticlePeer
的用法示例。
在下文中一共展示了ArticlePeer::retrieveByPks方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: executeDeleteSelected
public function executeDeleteSelected()
{
$this->selectedItems = $this->getRequestParameter('sf_admin_batch_selection', array());
try {
foreach (ArticlePeer::retrieveByPks($this->selectedItems) as $object) {
$object->delete();
}
} catch (PropelException $e) {
$this->getRequest()->setError('delete', 'Could not delete the selected Articles. Make sure they do not have any associated items.');
return $this->forward('validation', 'list');
}
return $this->redirect('validation/list');
}
示例2: executeBatchDelete
protected function executeBatchDelete(sfWebRequest $request)
{
$ids = $request->getParameter('ids');
$count = 0;
foreach (ArticlePeer::retrieveByPks($ids) as $object) {
$this->dispatcher->notify(new sfEvent($this, 'admin.delete_object', array('object' => $object)));
$object->delete();
if ($object->isDeleted()) {
$count++;
}
}
if ($count >= count($ids)) {
$this->getUser()->setFlash('notice', 'The selected items have been deleted successfully.');
} else {
$this->getUser()->setFlash('error', 'A problem occurs when deleting the selected items.');
}
$this->redirect('@article');
}