本文整理汇总了PHP中Album\Form\AlbumForm::setInputFilter方法的典型用法代码示例。如果您正苦于以下问题:PHP AlbumForm::setInputFilter方法的具体用法?PHP AlbumForm::setInputFilter怎么用?PHP AlbumForm::setInputFilter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Album\Form\AlbumForm
的用法示例。
在下文中一共展示了AlbumForm::setInputFilter方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editAction
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
// Get the Album with the specified id. An exception is thrown
// if it cannot be found, in which case go to the index page.
try {
$album = $this->getAlbumTable()->getAlbum($id);
} catch (\Exception $ex) {
return $this->redirect()->toRoute('album', array('action' => 'index'));
}
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
$request = $this->getRequest();
if ($request->isPost()) {
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$this->getAlbumTable()->saveAlbum($album);
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
return array('id' => $id, 'form' => $form);
}
示例2: editAction
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
$album = $this->getEntityManager()->find('Album\\Entity\\Album', $id);
if (!$album) {
return $this->redirect()->toRoute('album', array('action' => 'index'));
}
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
$request = $this->getRequest();
if ($request->isPost()) {
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$this->getEntityManager()->flush();
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
return array('id' => $id, 'form' => $form);
}
示例3: editAction
/**
* Edit Action
* <br/> Used to Edit Exists Album
* @return ViewModel edit view
*/
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
// Get the album with the specified id.
// An Exception is thrown if it connot be found, in which case go to index page
try {
$album = $this->getAlbumTable()->getAlbum($id);
} catch (\Exception $e) {
return $this->redirect()->toRoute('album', array('action' => 'index'));
}
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
// Or also can change Submit button value using setValue() method like into AddAction
// $form->get('submit')->setValue('Edit');
$request = $this->getRequest();
if ($request->isPost()) {
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$this->getAlbumTable()->saveAlbum($album);
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
return new ViewModel(array('id' => $id, 'form' => $form));
}
示例4: createService
public function createService(ServiceLocatorInterface $serviceLocator)
{
$options = $this->getOptions($serviceLocator)->toArray();
$form = new AlbumForm('album', $options);
$form->setHydrator(new ClassMethods())->setObject(new AlbumEntity());
$form->setInputFilter(new AlbumFilter());
return $form;
}
示例5: update
public function update($id, $data)
{
$data['id'] = $id;
$album = $this->getAlbumTable()->getAlbum($id);
$form = new AlbumForm();
$form->bind($album);
$form->setInputFilter($album->getInputFilter());
$form->setData($data);
if ($form->isValid()) {
$id = $this->getAlbumTable()->saveAlbum($form->getData());
}
return $this->get($id);
}
示例6: update
public function update($id, $data)
{
$data['id'] = $id;
$album = $this->getAlbumTable()->getAlbum($id);
$form = new AlbumForm();
$form->bind($album);
$form->setInputFilter($album->getInputFilter());
$form->setData($data);
if ($form->isValid()) {
$id = $this->getAlbumTable()->saveAlbum($form->getData());
return new JsonModel(array('code' => 0, 'ret' => $this->get($id)));
} else {
return new JsonModel(array('code' => -1, 'ret' => 'invalid'));
}
}
示例7: addAction
public function addAction()
{
$form = new AlbumForm();
$form->get('submit')->setValue('add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$album->exchangeArray($form->getData());
$this->getAlbumTable()->saveAlbum($album);
return $this->redirect()->toRoute('album');
}
}
return array('form' => $form);
}
示例8: addAction
public function addAction()
{
$form = new AlbumForm();
$form->get('submit')->setAttribute('value', 'Add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->post());
if ($form->isValid()) {
$album->populate($form->getData());
$this->getAlbumTable()->saveAlbum($album);
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
return array('form' => $form);
}
示例9: addAction
public function addAction()
{
$form = new AlbumForm();
$form->get('submit')->setValue('Add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$album->populate($form->getData());
$this->getEntityManager()->persist($album);
$this->getEntityManager()->flush();
return $this->redirect()->toRoute('album');
}
}
return array('form' => $form);
}
示例10: addAction
public function addAction()
{
$form = new AlbumForm();
$form->get('submit')->setAttribute('label', 'Add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$album->exchangeArray($form->getData());
$this->getEntityManager()->persist($album);
$this->getEntityManager()->flush();
// Redirect to list of albums
return $this->redirect()->toRoute('dalbum');
}
}
return array('form' => $form);
}
示例11: addAction
public function addAction()
{
$viewModel = $this->getViewModel();
$form = new AlbumForm();
$form->get('submit')->setAttribute('value', 'Add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$album->exchangeArray($form->getData());
$this->getAlbumTable()->saveAlbum($album);
// Redirect to list of albums
return $this->redirect()->toRoute('album-front-album');
}
}
return $viewModel->setVariables(array('form' => $form));
}
示例12: editAction
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
//Get the id from url parmas
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
//Wheather id is null then redirect to add function
}
try {
$album = $this->getAlbumTable()->getAlbum($id);
//get the album data of that particular id
} catch (Exception $e) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
$form = new AlbumForm();
//Create a Instance of AlbumForm
$form->bind($album);
//Bind the album data to the form
$form->get('submit')->setAttribute('value', 'Edit');
//Change submit to Edit Button
$request = $this->getRequest();
//Generate Request
if ($request->isPost()) {
//check wheather request is POST or Not
$album = new Album();
//create a instance of Album Model
$form->setInputFilter($album->getInputFilter());
//Validation filter set of type album on form
$form->setData($request->getPost());
//set data on form
if ($form->isValid()) {
//Check wheather form data is valid or not
$this->getAlbumTable()->saveAlbum($form->getData());
//Save updated data from form
//Redirect to list of album
return $this->redirect()->toRoute('album');
}
}
return array('id' => $id, 'form' => $form);
}
示例13: editAction
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
$album = $this->getAlbumTable()->getAlbum($id);
//var_dump($album); die;
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
$request = $this->getRequest();
if ($request->isPost()) {
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$this->getAlbumTable()->saveAlbum($this->getRequest()->getPost()->toArray());
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
return array('id' => $id, 'form' => $form, 'role' => $this->zfcUserAuthentication()->getIdentity()->getRole());
}
示例14: editAction
public function editAction()
{
$auth = new AuthenticationService();
$acl = $this->getAcl();
if (!$auth->hasIdentity()) {
return $this->redirect()->toRoute('album', array('action' => 'login'));
}
if (!$acl->isAllowed($this->getRole(), null, 'edit')) {
return $this->redirect()->toRoute('album', array('action' => 'index'));
}
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
// Get the Album with the specified id. An exception is thrown
// if it cannot be found, in which case go to the index page.
try {
$album = $this->getAlbumTable()->getAlbum($id);
} catch (\Exception $ex) {
return $this->redirect()->toRoute('album', array('action' => 'index'));
}
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
$request = $this->getRequest();
if ($request->isPost()) {
if ($request->getPost('submit2')) {
return $this->redirect()->toRoute('album');
}
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$this->getAlbumTable()->saveAlbum($album);
$form->get('title')->setAttribute('value', $request->getPost('title'));
$form->get('artist')->setAttribute('value', $request->getPost('artist'));
$notification = array('title' => $request->getPost('title'), 'artist' => $request->getPost('artist'));
}
}
return array('id' => $id, 'form' => $form, 'notification' => $notification);
}
示例15: editAction
public function editAction()
{
$id = (int) $this->params()->fromRoute('id', 0);
if (!$id) {
return $this->redirect()->toRoute('album', array('action' => 'add'));
}
$resp = $this->getRestResponse(sprintf($this->domain . "/album-rest/%s", $id));
$respData = Json::decode($resp->getBody());
$album = new Album();
$album->exchangeArray(get_object_vars($respData->album));
$form = new AlbumForm();
$form->bind($album);
$form->get('submit')->setAttribute('value', 'Edit');
$request = $this->getRequest();
if ($request->isPost()) {
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$resp = $this->getRestResponse(sprintf($this->domain . "/album-rest/%s", $id), "POST", get_object_vars($form->getData()));
// Redirect to list of albums
return $this->redirect()->toRoute('album');
}
}
$model = new ViewModel(array('id' => $id, 'form' => $form));
// $model->setTemplate("album/album/edit.phtml");
return $model;
}