Articles

Getting Started With Plugins

Creating plugins for ClipBucket is pretty easy, all you have to do is write down your code, register your anchors and tada !! your plugin is ready to use Introduction Setting Plugin File Writing Sample Code Registering Anchors Installing Plugin Testing Introduction ClipBucket’s new Plugin system works in following manner, Checks available Plugins Load Installed [...]

Read Article ›

User Levels & Permissions

Functions Used User Levels – Functions List User Permissions – Functions List Levels — userquery.class.php get_levels() get_levels_details() get_level_users() get_level_permissions() add_user_level() update_user_level() delete_user_level() level_type_exists Permissions — userquery.class.php add_new_permission() permission_exists() get_permissions() remove_permission() perm_check() General Purpose has_access() — functions.php User Levels User levels are used to group users in different levels ie. Administrators, Moderators, Registered users etc. ClipBucket [...]

Read Article ›

Basic Template Headers Files

add_js ClipBucket has a very useful function that is used to add Js file in ClipBucjet template so that you dont need to add js file in each template seperately, all you have to do is to add a little code and your file will be included in all templates usage add_js(array[]); explanation array(“file”=>”scope”); file [...]

Read Article ›

Adding New Player

Introduction ClipBucket Player system allows you to add any kind of web player to integerate with ClipBucket easily. Using our core code, asll you have to do is to add code of bunch of lines as we will guide you how to do that but first let me tell you how our system works.. Write [...]

Read Article ›

Creating Advance Global Announcement Plugin for ClipBucket

I hope you have reviewed my previous “Getting Started With Plugins Tutorial” before start reading this post. Well, lets do some practical work,in this tutorial i will create an advance Global Announcement Plugin for ClipBucket that will be displayed all over in ClipBucket with Database and Admin Control Panel Things we cover in this tutorial [...]

Read Article ›

Anchors

ClipBucket anchors are basically hook points where you can execute your codes via plugins for example if you want to call code under your video player, you will simply create or write an anchor after your player code as follows {ANCHOR place=”after_video_player”} now if you want to call code at this anchor, you will simply [...]

Read Article ›