sintonia/airtime_mvc/application/forms/StationPodcast.php

11 lines
279 B
PHP
Raw Normal View History

<?php
class Application_Form_StationPodcast extends Zend_Form {
public function init() {
// Station Podcast form
$podcastPreferences = new Application_Form_PodcastPreferences();
$this->addSubForm($podcastPreferences, 'preferences_podcast');
}
}