2009-09-23 02:30:16 +00:00
< ? php if ( current_user_can ( 'edit_themes' )) { ?>
< ? php if ( is_array ( $options )) { ?>
2009-09-24 02:38:11 +00:00
< h3 >< ? php _e ( 'Transcript Style and Display Settings' , 'what-did-they-say' ) ?> </h3>
2009-09-23 02:30:16 +00:00
< form method = " post " >
< input type = " hidden " name = " wdts[_nonce] " value = " <?php echo $nonce ?> " />
< input type = " hidden " name = " wdts[module] " value = " styles " />
< label >
< ? php _e ( 'Number of excerpt context characters in search results:' , 'what-did-they-say' ) ?>
< input type = " text "
name = " wdts[excerpt_distance] "
value = " <?php echo $options['excerpt_distance'] ?> "
size = " 3 " />
</ label >
2009-10-05 00:09:59 +00:00
2009-09-23 02:30:16 +00:00
< label >
< input type = " checkbox "
2009-10-05 02:37:22 +00:00
name = " wdts[load_default_styles] "
2009-09-23 02:30:16 +00:00
value = " yes "
2009-10-01 01:50:16 +00:00
< ? php echo ( $options [ 'load_default_styles' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'Include default CSS styles for transcripts' , 'what-did-they-say' ) ?>
</ label >
2009-10-05 02:37:22 +00:00
< label >
< input type = " checkbox "
name = " wdts[transcript_effects] "
value = " yes "
< ? php echo ( $options [ 'transcript_effects' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'Enable fancy transcript open/close transitions. Increases page download size.' , 'what-did-they-say' ) ?>
</ label >
2009-10-01 01:50:16 +00:00
< label >
< input type = " checkbox "
name = " wdts[use_nl2br] "
value = " yes "
< ? php echo ( $options [ 'use_nl2br' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'Turn transcript line breaks into HTML new lines (nl2br())' , 'what-did-they-say' ) ?>
2009-09-23 02:30:16 +00:00
</ label >
2009-10-05 00:09:59 +00:00
2009-10-06 01:35:49 +00:00
< label >
< input type = " checkbox "
name = " wdts[allow_html] "
value = " yes "
< ? php echo ( $options [ 'allow_html' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'Allow HTML in transcripts. If disabled, only short codes are allowed. Script and style tags are always filtered out.' , 'what-did-they-say' ) ?>
</ label >
2009-10-05 00:09:59 +00:00
< p > By default , transcripts should be hidden on these types of pages :</ p >
< div style = " margin: 0 2em " >
< label >
< input type = " checkbox "
name = " wdts[hide_transcript][home] "
value = " yes "
< ? php echo ( $options [ 'hide_transcript' ][ 'home' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'On the home page' , 'what-did-they-say' ) ?>
</ label >
< label >
< input type = " checkbox "
name = " wdts[hide_transcript][single] "
value = " yes "
< ? php echo ( $options [ 'hide_transcript' ][ 'single' ] ? 'checked="checked"' : '' ) ?> />
< ? php _e ( 'On individual post pages' , 'what-did-they-say' ) ?>
</ label >
</ div >
2009-09-23 02:30:16 +00:00
< input class = " button " type = " submit " value = " <?php _e('Change default styles', 'what-did-they-say') ?> " />
</ form >
2009-09-24 02:38:11 +00:00
2009-10-01 01:50:16 +00:00
< h3 >< ? php _e ( 'Transcript Line Breaks' , 'what-did-they-say' ) ?> </h3>
< p >< ? php _e ( 'If you\'re using short codes or HTML to construct your transcripts, you don\'t need to enable transcript line breaks.' , 'what-did-they-say' ) ?> </p>
2009-09-24 02:38:11 +00:00
< h3 >< ? php _e ( 'Default CSS Selectors Information' , 'what-did-they-say' ) ?> </h3>
< p >< ? php _e ( 'By default, the following CSS selectors are used by <strong>What Did They Say?!?</strong>:' , 'what-did-they-say' ) ?> </p>
2009-09-23 02:30:16 +00:00
< dl >
< dt >< code >. transcript </ code ></ dt >
< dd >< ? php _e ( 'The container for the transcript' , 'what-did-they-say' ) ?> </dd>
< dt >< code >. dialog </ code ></ dt >
< dd >< ? php _e ( 'Character dialog' , 'what-did-they-say' ) ?> </dd>
< dt >< code >. name </ code ></ dt >
< dd >< ? php _e ( 'The character\'s name' , 'what-did-they-say' ) ?> </dd>
< dt >< code >. direction </ code ></ dt >
< dd >< ? php _e ( 'The direction the characters is speaking in/from (off-stage, to another character)' , 'what-did-they-say' ) ?> </dd>
< dt >< code >. scene - heading </ code ></ dt >
< dd >< ? php _e ( 'A scene heading' , 'what-did-they-say' ) ?> </dd>
< dt >< code >. scene - action </ code ></ dt >
< dd >< ? php _e ( 'Action within a scene' , 'what-did-they-say' ) ?> </dd>
</ dl >
2009-09-24 02:38:11 +00:00
< h3 >< ? php _e ( 'Overriding Filters' , 'what-did-they-say' ) ?> </h3>
< p >
< ? php _e ( 'If you want to override how transcript HTML is structured, create hooks in your theme that implement the following filters.' , 'what-did-they-say' ) ?>
< ? php _e ( 'All of them return the same parameters that are passed in as an array(), with the return <code>$content</code> containing the filter output.' , 'what-did-they-say' ) ?>
</ p >
< dl >
< dt >< code > filter_shortcode_dialog ( $name , $direction , $speech , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the HTML for dialog blocks.' , 'what-did-they-say' ) ?> </dd>
< dt >< code > filter_shortcode_scene_action ( $description , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the HTML for scene action blocks.' , 'what-did-they-say' ) ?> </dd>
< dt >< code > filter_shortcode_scene_heading ( $description , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Ouptut <code>$content</code> contains the HTML for scene heading blocks.' , 'what-did-they-say' ) ?> </dd>
< dt >< code > the_media_transcript ( $transcript , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the HTML for a single transcript.' , 'what-did-they-say' ) ?> </dd>
< dt >< code > the_language_name ( $language , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the HTML for a language name.' , 'what-did-they-say' ) ?> </dd>
< dt >< code > the_matching_transcript_excerpts ( $transcripts , $search_string , $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the HTML for all the provided <code>$transcripts</code> that match <code>$search_string</code>.' , 'what-did-they-say' ) ?> </dd>
2009-10-02 11:41:12 +00:00
< dt >< code > the_transcript_format_string ( $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains the sprintf() format string for how transcript headers will be spelled. The default is <code>Transcript: %s</code>.' , 'what-did-they-say' ) ?> </dd>
2009-10-06 01:13:35 +00:00
< dt >< code > the_transcript_opener ( $content ) </ code ></ dt >
< dd >< ? php _e ( 'Output <code>$content</code> contains three elements: a container (.wdts-transcript-opener), and an opener & closer in the container (.wdts-opener and .wdts-container).' , 'what-did-they-say' ) ?> </dd>
</ dl >
2009-09-24 02:38:11 +00:00
< p >
< ? php _e ( 'A filter in your theme that would change the display of langauge names would look like the following:' , 'what-did-they-say' ) ?>
</ p >
< pre >
function my_theme_the_language_name ( $language , $content ) {
return array ( $language , " <div class='language-name'> ${ content } </div> " );
}
add_filter ( 'the_language_name' , 'my_theme_the_language_name' , 15 ); </ pre >
2009-09-23 02:30:16 +00:00
< ? php } ?>
< ? php } ?>