11 lines
No EOL
279 B
PHP
11 lines
No EOL
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');
|
|
}
|
|
|
|
} |