This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
forked from tmtrademark/cheezcap
-
Notifications
You must be signed in to change notification settings - Fork 0
SustainableWebsites/cheezcap
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
// // CheezCap - Cheezburger Custom Administration Panel // (c) 2008 - 2010 Cheezburger Network (Pet Holdings, Inc.) // LOL: http://cheezburger.com // Source: http://github.com/cheezburger/cheezcap/ // Authors: Kyall Barrows, Toby McKes, Stefan Rusek, Scott Porad // License: GNU General Public License, version 2 (GPL), http://www.gnu.org/licenses/gpl-2.0.html // ## ## Quick Start ## 1. Copy the CheezCap folder into your theme directory 2. Add the follwowing line to functions.php (if you don't have a functions.php, create one in your theme directory) require_once('cheezcap/cheezcap.php'); 3. Edit cheezcap/config.php 4. Sprinkle theme options around your code, like this: if ($cap->my_boolean_option) { // do stuff } 5. Enjoy! ## ## Background ## In order to use the same Wordpress theme for many different Wordpress sites, one of the things we've done at Cheezburger is create themes with lots and lots of theme options. CheezCap is a simple library we've made for creating custom wp-admin panels really, really easily. At a high level, the way it works is simple: edit the arrays in config.php in order to setup your theme options, and then use the values from those theme options to customize your theme. It's just that easy! ## ## Installation ## Installation is a two step process. First, copy the CheezCap folder into your theme directory. Next, add the following line to functions.php in your theme (if you don't have a functions.php, create one in the root of your theme directory). require_once('cheezcap/cheezcap.php'); Finally, to verify that CheezCap has installed correctly, simply open wp-admin and look for the "CheezCap Settings" link on the left navigation panel toward the bottom. ## ## Configuration ## Setting up your options happens inside config.php, and involves editing an array function called cap_get_options(). What you will be doing is building an array that contains "Group" objects. A Group is a grouping of theme options. Each Group appears as a tab on your custom admin panel. The way we have it written in config.php is that each group is instantiated inline, that is, within in the array, although you don't have to do it that way. When you instantiate a new Group, there are three parameters: 1. Name = will appear on the tab, should be human readable 2. ID = used internally, cannot have spaces and must be unique 3. Options Array = this is another array of options The options array consists of Options objects. Each option represents a value that you can use to customize your theme. (Like the groups, we instantiate these inline, but it's not required.) There are three types of Options available to create: 1. Boolean Option 2. Text Option 3. Dropdown Option ## 1. Boolean Option The simplest form of option...creates a true or false dropdown that can be used to turn features on or off. new BooleanOption(Name, Description, OptionID, Default) Name = a human readable name for the option. Description = a human readable description for the option. OptionID = a machine readable option identifier, cannot have spaces and must be unique Default = a boolean describing the default value for the option; if not specified, the default is "false" ## 2. Text Option A simple text field that can be used for configurable text, etc. new TextOption(Name, Description, OptionID, Default, UseTextArea) Name = a human readable name for the option. Description = a human readable description for the option. OptionID = a machine readable option identifier, cannot have spaces and must be unique Default = a string as the default value for the option; if not specified, the default is "" UseTextArea = a boolean describing if the text option should be written as a text area; if not specified, the default is false; ## 3. Dropdown Option Allows you to create a dropdown with custom values by passing the constructor an array of options new DropdownOption(Name, Description, OptionID, OptionsArray, DefaultIndex) Name = a human readable name for the option. Description = a human readable description for the option. OptionID = a machine readable option identifier, cannot have spaces and must be unique OptionsArray = an array containing the values for the dropdown menu DefaultIndex = an integer identifying the item in the array that is the default value; if not specified, the default is 0. ## ## Usage ## CheezCap makes it easy to access the values that are set in your custom admin pages is easy. A global variable $cap exists to allow you to access any variable by OptionID. (Hence, the need for OptionID to be unique.) For example, if you have created a DropdownOption with the OptionID "my_first_dropdown" then you would access the value of that option like so: $cap->my_first_dropdown For example, you might want to write that value to the screen: echo($cap->my_first_dropdown); And, in many cases, you will be accessing $cap from inside a function, so you will need to call the global variable declaration in order to access $cap, like so: function some_function() { global $cap; echo($cap->my_first_dropdown); } */
About
Cheezburger Custom Administration Panel
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published