Пример #1
0
 public function deleteAction()
 {
     $id = (int) $this->getParam('id');
     $record = PodcastSource::getRepository()->findOneBy(array('id' => $this->getParam('id'), 'podcast_id' => $this->podcast->id));
     if ($record instanceof PodcastSource) {
         $record->delete();
     }
     $this->alert('<b>Record deleted.</b>', 'green');
     $this->redirectFromHere(array('action' => 'index', 'id' => NULL));
 }
Пример #2
0
 /**
  * @PrePersist
  */
 public function _createSources()
 {
     $em = self::getEntityManager();
     $source_info = PodcastSource::getSourceInfo();
     foreach ($source_info as $source_type => $source_data) {
         if (!empty($this->{$source_type})) {
             $record = new PodcastSource();
             $record->podcast = $this;
             $record->type = $source_type;
             $record->url = $this->{$source_type};
             $record->is_active = 1;
             $em->persist($record);
         }
     }
 }
Пример #3
0
<?php

return array('method' => 'post', 'enctype' => 'multipart/form-data', 'elements' => array('type' => array('radio', array('label' => 'Source Type', 'multiOptions' => \Entity\PodcastSource::getSourceSelect(), 'required' => true)), 'url' => array('text', array('label' => 'Source URL', 'class' => 'half-width', 'description' => 'The address (including http[s]://) where content can be syndicated.', 'required' => true)), 'is_active' => array('radio', array('label' => 'Is Source Active', 'multiOptions' => array(0 => 'No', 1 => 'Yes'), 'default' => 1, 'description' => 'Mark this source as inactive to keep it in the database but no longer pull episodes from it.', 'required' => true)), 'submit' => array('submit', array('type' => 'submit', 'label' => 'Save Changes', 'helper' => 'formButton', 'class' => 'ui-button btn-large'))));