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