clipbucket/upload/plugins/cb_modules/cb_modules.php

36 lines
902 B
PHP
Raw Normal View History

<?php
/*
Plugin Name: ClipBucket Modules
Description: Social Bookmarks and Recently Viewed Videos - Classic ClipBucet Modules
Author: Arslan Hassan
Author Website: http://clip-bucket.com/
2011-01-20 10:21:43 +00:00
ClipBucket Version: 2.1
Version: 2
Website: http://labguru.com/
Plugin Type: global
*/
if(!function_exists('cb_modules'))
{
function cb_modules()
{
}
2011-05-14 06:57:36 +00:00
function show_social_bookmarks($vdetails=NULL)
{
2011-01-20 10:21:43 +00:00
echo "<span class='st_stumbleupon_vcount' displayText='Stumble' style='font-size:10px'></span><span class='st_twitter_vcount' displayText='Tweet'></span><span class='st_facebook_vcount' displayText='Facebook'></span><span class='st_plusone_vcount' ></span>";
echo '<div style="height:10px"></div>';
}
register_anchor_function("show_social_bookmarks","video_bookmarks");
2011-01-20 10:21:43 +00:00
add_header(PLUG_DIR.'/'.this_plugin().'/css.html');
}
?>