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

281 lines
9.0 KiB
PHP
Raw Normal View History

2009-08-12 23:51:23 +00:00
<?php
class WhatDidTheySayAdmin {
2009-08-14 02:13:46 +00:00
var $default_options = array(
'languages' => array(
array('code' => 'en', 'default' => true),
'fr',
'es',
'it',
'de'
),
'only_allowed_users' => false,
2009-08-15 19:38:12 +00:00
'users' => array(),
'capabilities' => array(
2009-08-15 20:21:52 +00:00
'submit_transcriptions' => 'administrator',
'approve_transcriptions' => 'administrator',
2009-08-15 19:38:12 +00:00
'change_languages' => 'administrator'
)
2009-08-13 16:37:33 +00:00
);
2009-08-15 19:38:12 +00:00
var $capabilities = array();
2009-08-13 17:12:10 +00:00
var $language_file;
var $all_languages = array();
2009-08-14 17:45:50 +00:00
var $notices = array();
2009-08-13 17:12:10 +00:00
2009-08-15 20:45:08 +00:00
function WhatDidTheySayAdmin($what_did_they_say = null) {
$this->what_did_they_say = $what_did_they_say;
2009-08-13 17:12:10 +00:00
$this->language_file = dirname(__FILE__) . '/../data/lsr-language.txt';
2009-08-12 23:51:23 +00:00
}
2009-08-16 18:17:20 +00:00
/**
* Initialize the object.
*/
2009-08-15 20:45:08 +00:00
function init() {
2009-08-15 19:38:12 +00:00
$this->capabilities = array(
2009-08-15 20:21:52 +00:00
'submit_transcriptions' => __('Submit transcriptions to a post', 'what-did-they-say'),
'approve_transcriptions' => __('Approve transcriptions to a post', 'what-did-they-say'),
2009-08-15 19:38:12 +00:00
'change_languages' => __('Change the available languages', 'what-did-they-say')
);
2009-08-12 23:51:23 +00:00
add_action('admin_menu', array(&$this, 'admin_menu'));
2009-08-14 17:45:50 +00:00
add_action('admin_notices', array(&$this, 'admin_notices'));
2009-08-15 19:38:12 +00:00
2009-08-14 02:13:46 +00:00
wp_enqueue_script('prototype');
2009-08-15 20:21:52 +00:00
add_filter('user_has_cap', array(&$this, 'user_has_cap'), 5, 3);
2009-08-16 18:20:37 +00:00
add_filter('the_media_transcript', array(&$this, 'the_media_transcript'));
add_filter('the_language_name', array(&$this, 'the_language_name'));
2009-08-12 23:51:23 +00:00
2009-08-14 17:45:50 +00:00
if (isset($_REQUEST['wdts'])) {
if (isset($_REQUEST['wdts']['_nonce'])) {
if (wp_verify_nonce($_REQUEST['wdts']['_nonce'], 'what-did-they-say')) {
$this->handle_update($_REQUEST['wdts']);
2009-08-12 23:51:23 +00:00
}
}
}
2009-08-14 02:13:46 +00:00
$this->read_language_file();
2009-08-12 23:51:23 +00:00
}
2009-08-13 16:37:33 +00:00
2009-08-16 18:20:37 +00:00
function the_media_transcript($transcript) {
return '<div class="transcript">' . $transcript . '</div>';
}
function the_language_name($language) {
return '<h3>' . $language . '</h3>';
}
2009-08-16 18:17:20 +00:00
/**
* user_has_cap filter.
*/
2009-08-15 20:21:52 +00:00
function user_has_cap($capabilities, $requested_capabilities, $capability_name) {
$options = get_option('what-did-they-say-options');
$role_cascade = array('administrator', 'editor', 'author', 'contributor', 'subscriber');
$allowed_roles = array();
$capture_roles = false;
for ($i = 0; $i < count($role_cascade); ++$i) {
if (in_array($role_cascade, $capabilities)) { $capture_roles = true; }
if ($capture_roles) { $allowed_roles[] = $role_cascade[$i]; }
}
foreach ($requested_capabilities as $requested_capability) {
if (in_array($options['capabilities'][$requested_capability], $allowed_roles)) {
$capabilities[$requested_capability] = true;
}
}
return $capabilities;
}
2009-08-16 18:17:20 +00:00
/**
* Show admin notices.
*/
2009-08-14 17:45:50 +00:00
function admin_notices() {
if (!empty($this->notices)) {
echo '<div class="updated fade">';
2009-08-16 16:40:54 +00:00
foreach ($this->notices as $notice) { echo "<p>" . $notice . "</p>"; }
2009-08-14 17:45:50 +00:00
echo '</div>';
}
}
2009-08-16 18:17:20 +00:00
/**
* Handle an update to options.
*/
2009-08-14 17:45:50 +00:00
function handle_update($info) {
foreach (get_class_methods($this) as $method) {
if (strpos($method, "handle_update_") === 0) {
$result = $this->{$method}($info);
if (!empty($result)) { $this->notices[] = $result; }
}
2009-08-14 17:45:50 +00:00
}
}
2009-08-16 16:40:54 +00:00
function handle_update_post_transcripts($post_transcript_info) {
$updated = false;
if (current_user_can('approve_transcriptions')) {
$options = get_option('what-did-they-say-options');
switch ($post_transcript_info['action']) {
case "manage_post_transcripts":
foreach ($post_transcript_info['transcripts'] as $language => $transcript) {
$this->what_did_they_say->save_transcript($post_transcript_info['post_id'], $language, $transcript);
}
$updated = __('Transcripts updated', 'what-did-they-say');
break;
}
}
return $updated;
}
2009-08-13 17:12:10 +00:00
function handle_update_languages($language_info) {
2009-08-14 17:45:50 +00:00
$updated = false;
2009-08-16 16:40:54 +00:00
if (current_user_can('change_languages')) {
$options = get_option('what-did-they-say-options');
switch ($language_info['action']) {
case "delete":
$updated = sprintf(__('%s deleted.', 'what-did-they-say'), $options['languages'][$language_info['code']]['name']);
unset($options['languages'][$language_info['code']]);
break;
case "add":
$this->read_language_file();
if (isset($this->all_languages[$language_info['code']])) {
$options['languages'][$language_info['code']] = array('name' => $this->all_languages[$language_info['code']]);
$updated = sprintf(__('%s added.', 'what-did-they-say'), $this->all_languages[$language_info['code']]);
}
break;
case "default":
if (isset($options['languages'][$language_info['code']])) {
foreach ($options['languages'] as $code => $info) {
if ($code == $language_info['code']) {
$options['languages'][$code]['default'] = true;
$updated = sprintf(__('%s set as default.', 'what-did-they-say'), $info['name']);
} else {
unset($options['languages'][$code]['default']);
}
2009-08-14 10:54:25 +00:00
}
}
2009-08-16 16:40:54 +00:00
break;
case "rename":
if (isset($options['languages'][$language_info['code']])) {
if (!empty($language_info['name'])) {
$updated = sprintf(__('%1$s renamed to %2$s.', 'what-did-they-say'), $options['languages'][$language_info['code']]['name'], $language_info['name']);
$options['languages'][$language_info['code']]['name'] = $language_info['name'];
}
2009-08-14 11:09:37 +00:00
}
2009-08-16 16:40:54 +00:00
break;
}
if ($updated !== false) {
ksort($options['languages']);
update_option('what-did-they-say-options', $options);
}
}
2009-08-14 17:45:50 +00:00
return $updated;
2009-08-13 23:32:42 +00:00
}
2009-08-15 19:53:55 +00:00
function handle_update_capabilities($capabilities_info) {
2009-08-15 19:38:12 +00:00
$updated = false;
2009-08-16 16:40:54 +00:00
if (current_user_can('edit_users')) {
$options = get_option('what-did-they-say-options');
switch ($capabilities_info['action']) {
case "capabilities":
if (isset($capabilities_info['capabilities'])) {
foreach (array_keys($this->default_options['capabilities']) as $capability) {
if (isset($capabilities_info['capabilities'][$capability])) {
$options['capabilities'][$capability] = $capabilities_info['capabilities'][$capability];
}
2009-08-15 19:53:55 +00:00
}
2009-08-16 16:40:54 +00:00
$updated = __('User capabilities updated', 'what-did-they-say');
2009-08-15 19:53:55 +00:00
}
2009-08-16 16:40:54 +00:00
break;
}
if ($updated !== false) {
update_option('what-did-they-say-options', $options);
}
2009-08-15 19:53:55 +00:00
}
return $updated;
2009-08-15 19:38:12 +00:00
}
2009-08-13 17:12:10 +00:00
function read_language_file() {
if (file_exists($this->language_file)) {
foreach (file($this->language_file, FILE_IGNORE_NEW_LINES) as $language) {
list($code, $date_added, $name, $additional) = explode("\t", $language);
$this->all_languages[$code] = $name;
}
}
return $this->all_languages;
}
2009-08-13 16:37:33 +00:00
function install() {
2009-08-14 11:03:58 +00:00
$this->read_language_file();
2009-08-14 02:13:46 +00:00
$options = get_option('what-did-they-say-options');
if (empty($options)) {
2009-08-14 11:03:58 +00:00
$this->default_options['languages'] = $this->build_default_languages();
2009-08-14 02:13:46 +00:00
update_option('what-did-they-say-options', $this->default_options);
2009-08-13 16:37:33 +00:00
}
}
2009-08-14 11:03:58 +00:00
function build_default_languages() {
$full_default_language_info = array();
foreach ($this->default_options['languages'] as $info) {
$code = null;
if (is_string($info)) {
$code = $info;
$default = false;
}
if (is_array($info)) {
extract($info);
}
if (isset($this->all_languages[$code])) {
$full_default_language_info[$code] = array('name' => $this->all_languages[$code]);
if (!empty($default)) {
$full_default_language_info[$code]['default'] = true;
}
}
}
return $full_default_language_info;
}
2009-08-12 23:51:23 +00:00
function admin_menu() {
2009-08-15 20:21:52 +00:00
if (current_user_can('edit_users')) {
add_options_page(
__('What Did They Say?!? Settings', 'what-did-they-say'),
__('What Did They Say?!?', 'what-did-they-say'),
'manage_options',
'manage-wdts',
array(&$this, 'manage_admin')
);
}
2009-08-12 23:51:23 +00:00
2009-08-15 20:21:52 +00:00
if (current_user_can('approve_transcriptions')) {
2009-08-12 23:51:23 +00:00
add_meta_box(
'manage-transcriptions',
__('Manage Transcriptions', 'what-did-they-say'),
array(&$this, 'manage_transcriptions_meta_box'),
'post',
'normal',
'low'
);
}
}
2009-08-15 19:58:01 +00:00
function manage_admin() {
2009-08-13 23:32:42 +00:00
$options = get_option('what-did-they-say-options');
2009-08-14 02:13:46 +00:00
$nonce = wp_create_nonce('what-did-they-say');
2009-08-13 16:37:33 +00:00
include(dirname(__FILE__) . '/admin.inc');
2009-08-12 23:51:23 +00:00
}
function manage_transcriptions_meta_box() {
2009-08-13 16:37:33 +00:00
global $post;
2009-08-15 20:21:52 +00:00
2009-08-15 19:38:12 +00:00
$options = get_option('what-did-they-say-options');
2009-08-15 20:45:08 +00:00
$transcripts = $this->what_did_they_say->get_transcripts($post->ID);
$nonce = wp_create_nonce('what-did-they-say');
include(dirname(__FILE__) . '/meta-box.inc');
2009-08-15 19:38:12 +00:00
}
2009-08-12 23:51:23 +00:00
}
?>