{"id":1683,"date":"2007-03-26T12:43:10","date_gmt":"2007-03-26T12:43:10","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/presentation-toolkit\/"},"modified":"2007-09-11T04:54:05","modified_gmt":"2007-09-11T04:54:05","slug":"presentation-toolkit","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/presentation-toolkit\/","author":164815,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"0.0.9","stable_tag":"0.0.9","tested":"2.2","requires":"2.1","requires_php":"","requires_plugins":"","header_name":"Presentation Toolkit","header_author":"Windy Road","header_description":"","assets_banners_color":"","last_updated":"2007-09-11 04:54:05","external_support_url":"","external_repository_url":"","donate_link":"http:\/\/windyroad.org\/software\/wordpress\/presentation-toolkit-plugin\/#donate","header_plugin_uri":"http:\/\/windyroad.org\/software\/wordpress\/presentation-toolkit-plugin","header_author_uri":"http:\/\/windyroad.org","rating":0,"author_block_rating":0,"active_installs":10,"downloads":8198,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["0.0.1","0.0.2","0.0.3","0.0.4","0.0.5","0.0.6","0.0.7","0.0.8","0.0.9"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1566814","resolution":"1","location":"plugin","width":734,"height":510}},"screenshots":{"1":"Changing options"}},"plugin_section":[],"plugin_tags":[83,753,1141,43974],"plugin_category":[],"plugin_contributors":[82873],"plugin_business_model":[],"class_list":["post-1683","plugin","type-plugin","status-closed","hentry","plugin_tags-admin","plugin_tags-skin","plugin_tags-theme","plugin_tags-windy-road","plugin_contributors-tompahoward","plugin_committers-bestweblayout","plugin_committers-tompahoward"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/presentation-toolkit.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/presentation-toolkit\/trunk\/screenshot-1.png?rev=1566814","caption":"Changing options"}],"raw_content":"<!--section=description-->\n<p>The Presentation Toolkit plugin adds an administration page under the 'Presentation' menu for <a href=\"http:\/\/windyroad.org\/software\/wordpress\/presentation-toolkit-plugin\/#ptk-themes\">Presentation Toolkit compatible themes and skins<\/a>.  The Presentation Toolkit plugin is based on <a href=\"http:\/\/frenchfragfactory.net\/ozh\/my-projects\/wordpress-theme-toolkit-admin-menu\/\">the WordPress Theme Toolkit<\/a> by <a href=\"http:\/\/planetozh.com\">Ozh<\/a>.<\/p>\n\n<h3>Release Notes<\/h3>\n\n<ul>\n<li>0.0.9\n\n<ul>\n<li>Removed html encoding of skin options for the skinner plugin. If you are using skinner, please upgrade to 0.1.2.<\/li>\n<\/ul><\/li>\n<li>0.0.8\n\n<ul>\n<li>The Presentation Toolkit is now compatible with the <a href=\"http:\/\/wordpress.org\/extend\/plugins\/theme-switcher\/\">Theme Switcher plugin<\/a> and also supports the new skin switching feature of the <a href=\"http:\/\/windyroad.org\/software\/wordpress\/skinner\/\">Skinner plugin<\/a>.<\/li>\n<\/ul><\/li>\n<li>0.0.7\n\n<ul>\n<li>Added <a href=\"http:\/\/wordpress.org\/extend\/plugins\/be-nice\/\">BeNice<\/a> support.<\/li>\n<li>Fixed error in redirect after storing options.<\/li>\n<\/ul><\/li>\n<li>0.0.6\n\n<ul>\n<li>Another attempt to fix plugin activation\/deactivation issues<\/li>\n<\/ul><\/li>\n<li>0.0.5\n\n<ul>\n<li>Trying to fix plugin activation\/deactivation issues<\/li>\n<\/ul><\/li>\n<li>0.0.4 \n\n<ul>\n<li>Fixed some more validation issues<\/li>\n<\/ul><\/li>\n<li>0.0.3 \n\n<ul>\n<li>Added <code>get_theme_option()<\/code> and <code>get_skin_option()<\/code> functions<\/li>\n<\/ul><\/li>\n<li>0.0.2 \n\n<ul>\n<li>Fixed validation issues<\/li>\n<\/ul><\/li>\n<li>0.0.1 \n\n<ul>\n<li>Fixed generated skin URLS<\/li>\n<\/ul><\/li>\n<li>0.0.0 \n\n<ul>\n<li>Initial Release<\/li>\n<\/ul><\/li>\n<\/ul>\n\n<!--section=installation-->\n<ol>\n<li>copy the 'presentationtoolkit' directory to your 'wp-contents\/plugins' directory.<\/li>\n<li>Activate the Presentation Toolkit in your plugins administration page.<\/li>\n<li>Install and activate a <a href=\"http:\/\/windyroad.org\/software\/wordpress\/presentation-toolkit-plugin\/#ptk-themes\">Presentation Toolkit compatible theme or skin<\/a>.<\/li>\n<li>You will now see a menu for the theme or skin in the 'Presentation' menu.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>How do I Use the Presentation Toolkit in my theme\/skin?<\/dt>\n<dd><p>In the <code>functions.php<\/code> file for your theme or skin add the following:\n    if( function_exists( 'presentationtoolkit' ) ) {\n        presentationtoolkit(\n            array( 'option1' =&gt; 'Text for Option One',\n                 'option2' =&gt; 'Text for Option Two',\n                 'option3' =&gt; 'Text for Option Three' ),\n            &#095;&#095;FILE&#095;&#095;\n        );\n    }\nYou will now have an admin page for your theme or skin.<\/p><\/dd>\n<dt>How do I access the theme's\/skin's options?<\/dt>\n<dd><p>To access your theme or skin options simply use\n    get_theme_option('option')\nor \n    get_skin_options('option')\nrespectively.  If the option is not set, or doesn't exist, then <code>null<\/code> will be returned.<\/p><\/dd>\n<dt>What is the format of the various options?<\/dt>\n<dd><p>You'll find the format of the various options at <a href=\"http:\/\/frenchfragfactory.net\/ozh\/my-projects\/wordpress-theme-toolkit-admin-menu\/3\/\">frenchfragfactory<\/a>.<\/p><\/dd>\n\n<\/dl>","raw_excerpt":"The Presentation Toolkit plugin adds an administration page under the &#039;Presentation&#039; menu for Presentation Toolkit compatible themes and ski &hellip;","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/1683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=1683"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/tompahoward"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=1683"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=1683"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=1683"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=1683"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=1683"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=1683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}