what-did-they-say/what-did-they-say.php

240 lines
8.4 KiB
PHP
Raw Normal View History

2009-08-12 23:51:23 +00:00
<?php
/*
Plugin Name: What Did They Say?!?
Plugin URI: http://www.coswellproductions.com/wordpress/wordpress-plugins/
Description: Manage and display text transcriptions of comics, videos, or other media.
Version: 0.1
2009-08-13 16:37:33 +00:00
Author: John Bintz
2009-08-12 23:51:23 +00:00
Author URI: http://www.coswellproductions.com/wordpress/
2009-08-13 16:37:33 +00:00
Copyright 2009 John Bintz (email : john@coswellproductions.com)
2009-08-12 23:51:23 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
2009-09-25 03:26:04 +00:00
foreach (glob(dirname(__FILE__) . '/classes/*.inc') as $file) { require_once($file); }
2009-08-13 16:37:33 +00:00
2009-09-13 16:35:20 +00:00
$what_did_they_say_admin = new WhatDidTheySayAdmin(&$what_did_they_say);
$what_did_they_say_admin->_parent_file = __FILE__;
2009-08-12 23:51:23 +00:00
add_action('init', array(&$what_did_they_say_admin, 'init'));
2009-08-20 00:45:46 +00:00
// template tags
// please, if you use any of these, wrap them in function_exists() so your site doesn't
// blow up if you disable the plugin! Example:
//
// if (function_exists('the_media_transcript')) { the_media_transcript(); }
//
/**
* Get the transcript for the current post.
* @param string $language The language code to use. If not specificed, use the default language.
* @return string|false The transcript in the requested language for the specified post, or false if no transcript found.
*/
2009-08-16 18:14:07 +00:00
function get_the_media_transcript($language = null) {
global $post;
if (!empty($post)) {
$language_options = new WDTSLanguageOptions();
if (is_null($language)) { $language = $language_options->get_default_language(); }
$transcript = false;
$approved_transcripts = new WDTSApprovedTranscript($post->ID);
$transcripts = $approved_transcripts->get_transcripts();
if (!empty($transcripts)) {
if (isset($transcripts[$language])) { $transcript = $transcripts[$language]; }
}
return $transcript;
2009-08-16 18:14:07 +00:00
}
return '';
2009-08-16 18:14:07 +00:00
}
2009-08-20 00:45:46 +00:00
/**
* Show the transcript for the current post in the requested_language.
* @param string $language The language code to use. If not specificed, use the default language.
*/
2009-08-16 18:14:07 +00:00
function the_media_transcript($language = null) {
2009-09-22 02:10:17 +00:00
echo end(apply_filters('the_media_transcript', get_the_media_transcript($language)));
}
/**
* Get the excerpt of all transcripts that match the provided search string.
*/
function get_the_matching_transcripts($search_string = '') {
global $post;
if (empty($search_string)) { $search_string = get_query_var('s'); }
$approved_transcripts = new WDTSApprovedTranscript($post->ID);
$transcripts = $approved_transcripts->get_transcripts();
$matching_transcripts = array();
if (!empty($transcripts)) {
foreach ($transcripts as $transcript) {
if (strpos($transcript['transcript'], $search_string) !== false) { $matching_transcripts[] = $transcript; }
}
}
return $matching_transcripts;
}
function the_matching_transcript_excerpts($search_string = '') {
if (empty($search_string)) { $search_string = get_query_var('s'); }
echo end(apply_filters('the_matching_transcript_excerpts', get_the_matching_transcripts($search_string), $search_string));
2009-08-16 18:14:07 +00:00
}
2009-08-20 00:45:46 +00:00
/**
* Get the name of the language specified by the provided language code.
* @param string $language The language code to use. If not specificed, use the default language.
* @return string The name of the requested language.
*/
2009-08-16 18:14:07 +00:00
function get_the_language_name($language = null) {
2009-09-13 16:35:20 +00:00
$language_options = new WDTSLanguageOptions();
if (is_null($language)) { $language = $language_options->get_default_language(); }
return $language_options->get_language_name($language);
2009-08-16 18:14:07 +00:00
}
2009-08-20 00:45:46 +00:00
/**
* Show the name of the language specified by the provided language code.
* @param string $language The language code to use. If not specificed, use the default language.
*/
2009-08-16 18:14:07 +00:00
function the_language_name($language = null) {
2009-09-22 02:10:17 +00:00
echo end(apply_filters('the_language_name', get_the_language_name($language)));
2009-08-16 18:14:07 +00:00
}
2009-08-20 00:45:46 +00:00
/**
* Display all transcripts for a post, with a dropdown selector for people to select other languages.
* @param string $dropdown_message If set, the text that appears to the left of the language dropdown.
* @param string $single_language_message If set, the text that appears when only one transcript exists for this post.
*/
2009-10-05 00:09:59 +00:00
function transcripts_display($language_format = null, $show_transcripts_string = null, $hide_transcripts_string = null) {
2009-09-11 01:20:01 +00:00
global $post;
2009-08-16 20:15:01 +00:00
2009-08-19 00:53:45 +00:00
$output = array();
2009-08-16 20:15:01 +00:00
$transcripts = array();
2009-09-11 01:20:01 +00:00
$approved_transcripts = new WDTSApprovedTranscript($post->ID);
$post_transcripts = $approved_transcripts->get_transcripts();
2009-08-19 00:53:45 +00:00
if (!empty($post_transcripts)) {
2009-09-13 16:35:20 +00:00
foreach ($post_transcripts as $transcript) {
extract($transcript, EXTR_PREFIX_ALL, "transcript");
$transcript_transcript = trim($transcript_transcript);
if (!empty($transcript_transcript)) {
$transcripts[$transcript_language] = $transcript_transcript;
2009-08-19 00:53:45 +00:00
}
2009-08-16 20:15:01 +00:00
}
2009-08-19 00:53:45 +00:00
2009-09-13 16:35:20 +00:00
$language_options = new WDTSLanguageOptions();
2009-10-05 00:09:59 +00:00
$options = get_option('what-did-they-say-options');
2009-09-13 16:35:20 +00:00
2009-08-19 00:53:45 +00:00
if (count($transcripts) > 0) {
2009-09-13 16:35:20 +00:00
$default_language = $language_options->get_default_language();
2009-08-19 00:53:45 +00:00
2009-10-05 00:09:59 +00:00
$do_hide = false;
if (is_home() || is_single()) {
foreach ($options['hide_transcript'] as $type => $do_hide) {
if ($do_hide && call_user_func("is_${type}")) {
$do_hide = true; break;
}
}
}
2009-10-05 01:53:46 +00:00
$output[] = '<div class="wdts-transcript-container' . ($do_hide ? " wdts-start-hidden" : "") . '">';
$output[] = apply_filters('the_transcript_opener', '');
2009-10-02 11:41:12 +00:00
2009-10-05 01:53:46 +00:00
$output[] = '<div class="wdts-transcript-bundle' . ($do_hide ? ' wdts-hide-transcript' : '') . '">';
2009-10-02 11:41:12 +00:00
2009-10-05 01:53:46 +00:00
foreach ($transcripts as $code => $transcript) {
$transcript = end(apply_filters('the_media_transcript', $transcript));
2009-10-05 01:53:46 +00:00
$output[] = end(apply_filters('the_transcript_language_name', $language_format, $code, ''));
2009-10-05 00:09:59 +00:00
2009-10-05 01:53:46 +00:00
$output[] = '<div class="transcript-holder ' . $code . '">' . $transcript . '</div>';
}
$output[] = '</div>';
$output[] = '</div>';
2009-08-16 20:15:01 +00:00
}
}
2009-08-19 00:53:45 +00:00
echo apply_filters('transcripts_display', implode("\n", $output));
2009-08-16 20:15:01 +00:00
}
2009-08-20 00:45:46 +00:00
/**
* If you're allowing users to submit transcripts to the post transcript queue, use this tag in your Loop.
*/
2009-08-16 20:54:11 +00:00
function the_media_transcript_queue_editor() {
2009-09-13 16:35:20 +00:00
global $post;
2009-08-19 02:19:11 +00:00
2009-08-20 00:45:46 +00:00
if (current_user_can('submit_transcriptions')) {
$queued_transcripts_for_user = false;
2009-08-19 02:19:11 +00:00
2009-09-11 01:20:01 +00:00
$queued_transcripts = new WDTSQueuedTranscript($post->ID);
2009-08-20 00:45:46 +00:00
$user = wp_get_current_user();
if (!empty($user)) {
2009-09-11 01:20:01 +00:00
$queued_transcripts_for_user = $queued_transcripts->get_transcripts_for_user($user->ID);
2009-08-20 00:45:46 +00:00
}
2009-09-13 16:35:20 +00:00
$language_options = new WDTSLanguageOptions();
$transcript_options = new WDTSTranscriptOptions($post->ID);
$options = get_option('what-did-they-say-options');
foreach (array('Approved', 'Queued') as $name) {
$var_name = strtolower($name);
$class_name = "WDTS${name}Transcript";
${"${var_name}_transcript_manager"} = new $class_name($post->ID);
${"${var_name}_transcripts"} = ${"${var_name}_transcript_manager"}->get_transcripts();
}
2009-09-13 18:46:02 +00:00
2009-09-13 16:35:20 +00:00
$nonce = wp_create_nonce('what-did-they-say');
2009-10-01 01:28:03 +00:00
$new_transcript_id = md5(rand());
2009-09-13 16:35:20 +00:00
?>
2009-10-02 11:41:12 +00:00
<p>[ <a id="wdts-opener-<?php echo $id = md5(rand()) ?>" href="#"><?php _e('Edit/Add Transcripts', 'what-did-they-say') ?></a> ]</p>
<div id="wdts-<?php echo $id ?>" style="display:none">
<h3 class="wdts"><?php _e('Manage Transcripts:', 'what-did-they-say') ?></h3>
<?php include(dirname(__FILE__) . '/classes/partials/meta-box.inc') ?>
</div>
<script type="text/javascript">
$('wdts-opener-<?php echo $id ?>').observe('click', function(e) {
Event.stop(e);
var target = $('wdts-<?php echo $id ?>');
if (target.visible()) {
new Effect.BlindUp(target, { duration: 0.25 });
} else {
new Effect.BlindDown(target, { duration: 0.25 });
}
});
</script>
2009-08-16 20:54:11 +00:00
<?php }
}
function wdts_header_wrapper($text) {
if (is_admin()) {
echo '<p><strong>' . $text . '</strong></p>';
} else {
echo '<h3 class="wdts">' . $text . '</h3>';
}
}
2009-08-12 23:51:23 +00:00
?>