Created
August 18, 2011 06:39
-
-
Save alexkingorg/1153501 to your computer and use it in GitHub Desktop.
Small mod to oEmbed Gist WordPress plugin to add NOSCRIPT support (RSS feeds, etc.).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: oEmbed gist (AK) | |
Plugin URI: http://firegoby.theta.ne.jp/wp/oembed-gist | |
Description: Embed source from gist.github. | |
Author: Takayuki Miyauchi (THETA NETWORKS Co,.Ltd) | |
Version: 1.1.0 | |
Author URI: http://firegoby.theta.ne.jp/ | |
*/ | |
/* | |
Copyright (c) 2010 Takayuki Miyauchi (THETA NETWORKS Co,.Ltd). | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
THE SOFTWARE. | |
Modified August 18, 2011 by Alex King (alexking.org) to add NOSCRIPT and i18n support | |
*/ | |
load_plugin_textdomain('oembed-gist'); | |
new gist(); | |
class gist { | |
private $noscript; | |
private $html = '<script src="https://gist.github.com/%s.js%s"></script><noscript>%s</noscript>'; | |
function __construct() | |
{ | |
$this->noscript = __('<p>View the code on <a href="https://gist.github.com/%s">Gist</a>.</p>', 'oembed-gist'); | |
wp_embed_register_handler( | |
'gist', | |
'#https://gist.github.com/([0-9]+)(\#file_(.+))?#i', | |
array(&$this, 'handler') | |
); | |
add_shortcode('gist', array(&$this, 'shortcode')); | |
add_filter('plugin_row_meta', array(&$this, 'plugin_row_meta'), 10, 2); | |
} | |
public function handler($m, $attr, $url, $rattr) | |
{ | |
if (!isset($m[2]) || !isset($m[3]) || !$m[3]) { | |
$m[3] = null; | |
} | |
return '[gist id="'.$m[1].'" file="'.$m[3].'"]'; | |
} | |
public function shortcode($p) | |
{ | |
if (preg_match("/^[0-9]+$/", $p['id'])) { | |
$noscript = sprintf($this->noscript, $p['id']); | |
if ($p['file']) { | |
return sprintf($this->html, $p['id'], '?file='.$p['file'], $noscript); | |
} else { | |
return sprintf($this->html, $p['id'], '', $noscript); | |
} | |
} | |
} | |
public function plugin_row_meta($links, $file) | |
{ | |
$pname = plugin_basename(__FILE__); | |
if ($pname === $file) { | |
$links[] = '<a href="http://firegoby.theta.ne.jp/pfj/">'.__('Pray for Japan', 'oembed-gist').'</a>'; | |
} | |
return $links; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment