Lines Matching refs:opt
30 $opt =& $event->data['opt'];
31 if ($opt['feed_mode'] != 'podcast') return;
32 $opt['blog'] = $_REQUEST['blog'];
33 $opt['tags'] = $_REQUEST['tags'];
34 $opt['sortby'] = $_REQUEST['sortby'];
35 $opt['sortorder'] = $_REQUEST['sortorder'];
36 $opt['podcast_format'] = $_REQUEST['podcast_format'];
37 $opt['podcast_extensions'] = explode( ',', $this->getConf( 'podcast_extensions' ));
38 $opt['feed_type'] = 'RSS2.0';
41 $opt = $event->data['opt'];
42 if ($opt['feed_mode'] !== 'podcast') return;
46 'blog' => explode(',', $opt['blog']),
47 'tags' => ($opt['tags'] ? explode(',', $opt['tags']) : null),
48 'sortby' => $opt['sortby'],
49 'sortorder' => $opt['sortorder'],
50 'limit' => $opt['items'],
56 if( $opt['feed_mode'] === 'podcast' ) {
66 if( $opt['feed_mode'] === 'podcast' ) {
77 $opt = $event->data['opt'];
78 if ($opt['feed_mode'] !== 'podcast') return;
79 $opt['link_to'] = 'current';
80 $opt['item_content'] = 'html';
104 $ext = ( $opt['podcast_format']
105 && in_array( $opt['podcast_format'], $opt['podcast_extensions'] ))
106 ? $opt['podcast_format']