{"id":11679,"date":"2011-01-05T20:12:45","date_gmt":"2011-01-05T20:12:45","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/lobot-slider-administrator\/"},"modified":"2011-05-19T19:12:01","modified_gmt":"2011-05-19T19:12:01","slug":"lobot-slider-administrator","status":"closed","type":"plugin","link":"https:\/\/tw.wordpress.org\/plugins\/lobot-slider-administrator\/","author":186518,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"0.6.0","stable_tag":"0.6.0","tested":"3.1.4","requires":"2.9","requires_php":"","requires_plugins":"","header_name":"Lobot Slider Administrator","header_author":"40 Digits","header_description":"","assets_banners_color":"","last_updated":"2011-05-19 19:12:01","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=YDRKMDX6YXLUW","header_plugin_uri":"http:\/\/www.40digits.com\/blog\/lobot-slider-administrator-released-today\/","header_author_uri":"http:\/\/40digits.com\/","rating":5,"author_block_rating":0,"active_installs":10,"downloads":9790,"num_ratings":1,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":{"0.4.3":"<ul>\n<li>this upgrade fixes a pretty major autosave bug.<\/li>\n<\/ul>","0.4.2":"<ul>\n<li>this upgrade will fix the PHP warning you may be getting.<\/li>\n<\/ul>","0.4":"<ul>\n<li>the previous version was majorly broken.<\/li>\n<\/ul>","0.3":"<ul>\n<li>it won&#039;t work below this version.<\/li>\n<\/ul>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"1"},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["0.4.1","0.4.3","0.5.0","0.6.0"],"block_files":[],"assets_screenshots":[],"screenshots":{"1":"This meta box is added to the editor for the page containing the slider"}},"plugin_section":[],"plugin_tags":[83,683,611],"plugin_category":[],"plugin_contributors":[95012],"plugin_business_model":[],"class_list":["post-11679","plugin","type-plugin","status-closed","hentry","plugin_tags-admin","plugin_tags-meta","plugin_tags-slider","plugin_contributors-chuckmo","plugin_committers-chuckmo","plugin_committers-fredlawl"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/lobot-slider-administrator.svg","icon_2x":false,"generated":true},"screenshots":[],"raw_content":"<!--section=description-->\n<p><strong>This plugin is ideal for theme developers who need to provide their clients an easy-to-use interface for managing slider content.<\/strong><\/p>\n\n<p>To fetch the slides, use the following code:\n    \/\/returns an array of arrays filled with each slide's info.\n    $the_slides = fourty_slider_get_slides();<\/p>\n\n<pre><code>\/*\n$the_slides = Array\n(\n    [0] =&gt; Array\n        (\n            [title] =&gt; Slide 1 Title\n            [caption] =&gt; Here is the caption for Slide 1\n            [link] =&gt; http:\/\/your-site.net\/2010\/09\/14\/hello-world\/\n            [image] =&gt; http:\/\/your-site.net\/files\/2011\/01\/steddyp4.jpg\n            [external] =&gt; \n        )\n\n    [1] =&gt; Array\n        (\n            [title] =&gt; Slide 2 Title\n            [caption] =&gt; And here's the caption for Slide 2\n            [link] =&gt; http:\/\/google.com\n            [image] =&gt; http:\/\/your-site.net\/files\/2011\/01\/Slide3.gif\n            [external] =&gt; 1\n        )\n\n)\n*\/\n<\/code><\/pre>\n\n<h3>Planned Features:<\/h3>\n\n<ul>\n<li>add an infinite number of slides<\/li>\n<li>various aesthetic improvements<\/li>\n<li>internationalization<\/li>\n<\/ul>\n\n<blockquote>\n  <p><em>\"Lobot's not the chatty type, but he sure is loyal. And great with computers!\"<\/em>\n  \u2015Lando Calrissian<\/p>\n<\/blockquote>\n\n<!--section=installation-->\n<ol>\n<li>Upload \"slider_admin.php\" to the \"\/wp-content\/plugins\/\" directory<\/li>\n<li>Activate the plugin through the \"Plugins\" menu in WordPress<\/li>\n<li>Configure the plugin in the \"Settings\" menu.<\/li>\n<li>Setup your slider by editing the page specified in in the plugin settings.<\/li>\n<li>Implement the template tags. See example on the installation page.<\/li>\n<\/ol>\n\n<h3>Front-end Implementation Example<\/h3>\n\n<pre><code>&lt;?php\n\n\/\/returns an array of arrays filled with each slide's info.\n$the_slides = fourty_slider_get_slides();\n\n$slide_n=0;\n\n\/\/loop through each slide and echo it's info\nforeach($the_slides as $cur_slide){\n\n    \/\/get the slide's image\n    echo '&lt;img src=\"' . $cur_slide['image'] . '\" \/&gt;';\n\n    \/\/get the slide's title\n    echo $cur_slide['title'];\n\n    \/\/get the slide's caption\n    echo $cur_slide['caption'];\n\n    \/\/get the slide's link\n    echo $cur_slide['link'];\n\n    \/\/is the link an external link?\n    $is_external_link = $cur_slide['external']\n\n    \/\/this echoes the indicators onto each slide with a class for the current slide's indicator\n    for($n=0; $n&lt;count($the_slides); $n++){\n\n        if($n==$slide_n){\n            echo '&lt;div class=\"indicator-on\"&gt;&lt;\/div&gt;';\n        } else {\n            echo '&lt;div class=\"indicator-off\"&gt;&lt;\/div&gt;';\n        }\n\n    }\n\n    $slide_n++;\n\n}\n?&gt;\n<\/code><\/pre>\n\n<!--section=faq-->\n<dl>\n<dt>How do I setup the slider animations?<\/dt>\n<dd><p><strong>There is no front-end slider component to this plugin<\/strong>; it is simply the back-end interface for managing slide content. You'll need to implement your own jQuery slider. Find one <a href=\"http:\/\/lmgtfy.com\/?q=jQuery+slider\">via Google<\/a>.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>0.6.0<\/h4>\n\n<ul>\n<li>add infinite slides!<\/li>\n<li>various bug fixes for better compatibility with various PHP configuration<\/li>\n<\/ul>\n\n<h4>0.4.3<\/h4>\n\n<ul>\n<li>fixed bug that was causing all information to be lost on autosave.<\/li>\n<li>updated description and implementation example to make the 'fourty_slider_get_slides()' function easier to understand.<\/li>\n<\/ul>\n\n<h4>0.4.2<\/h4>\n\n<ul>\n<li>fixed code that was generating a PHP warning.<\/li>\n<\/ul>\n\n<h4>0.4.1<\/h4>\n\n<ul>\n<li>Javascript reworked.<\/li>\n<\/ul>\n\n<h4>0.4<\/h4>\n\n<ul>\n<li>Major revamp to fix countless bugs.<\/li>\n<\/ul>\n\n<h4>0.3<\/h4>\n\n<ul>\n<li>initial release... needs some optimization.<\/li>\n<\/ul>","raw_excerpt":"Creates a slide management interface in the WordPress backend and provides template tags for fetching the slides&#039; information.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/11679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=11679"}],"author":[{"embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/chuckmo"}],"wp:attachment":[{"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=11679"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=11679"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=11679"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=11679"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=11679"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/tw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=11679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}