From 6356280cb1d83a0f9562c11ba83de4c6de7c34e4 Mon Sep 17 00:00:00 2001 From: alan Date: Thu, 29 Mar 2012 11:21:27 +0000 Subject: [PATCH] Version 1.1.0 released git-svn-id: svn://p-o.co.uk/p-o.co.uk/com_ajaxdemo@60 60e5ea7b-c093-dd11-ac13-000423648166 --- LICENSE.txt | 340 ++++++++++++++++++++++++++ README.txt | 25 ++ admin/ajaxdemo.php | 22 ++ admin/controller.php | 32 +++ admin/controllers/ajaxdemo.php | 35 +++ admin/controllers/index.html | 1 + admin/index.html | 1 + admin/sql/index.html | 1 + admin/sql/install.mysql.utf8.sql | 66 +++++ admin/sql/uninstall.mysql.utf8.sql | 2 + admin/sql/updates/index.html | 1 + admin/sql/updates/mysql/1.0.0.sql | 1 + admin/sql/updates/mysql/index.html | 1 + admin/tables/colour.php | 42 ++++ admin/tables/colours.php | 42 ++++ admin/tables/index.html | 1 + admin/views/ajaxdemo/index.html | 1 + admin/views/ajaxdemo/tmpl/default.php | 41 ++++ admin/views/ajaxdemo/tmpl/index.html | 1 + admin/views/ajaxdemo/view.html.php | 61 +++++ admin/views/index.html | 1 + ajaxdemo.xml | 56 +++++ modal.js.txt | 17 ++ site/ajaxdemo.php | 25 ++ site/controller.php | 33 +++ site/controllers/colour.php | 32 +++ site/controllers/colours.php | 32 +++ site/controllers/index.html | 1 + site/images/blue1.png | Bin 0 -> 1042 bytes site/images/blue1_t.png | Bin 0 -> 298 bytes site/images/blue2.png | Bin 0 -> 922 bytes site/images/blue2_t.png | Bin 0 -> 295 bytes site/images/blue3.png | Bin 0 -> 908 bytes site/images/blue3_t.png | Bin 0 -> 280 bytes site/images/green1.png | Bin 0 -> 922 bytes site/images/green1_t.png | Bin 0 -> 295 bytes site/images/green2.png | Bin 0 -> 1042 bytes site/images/green2_t.png | Bin 0 -> 296 bytes site/images/green3.png | Bin 0 -> 908 bytes site/images/green3_t.png | Bin 0 -> 280 bytes site/images/index.html | 1 + site/images/orange1.png | Bin 0 -> 1041 bytes site/images/orange1_t.png | Bin 0 -> 295 bytes site/images/orange2.png | Bin 0 -> 923 bytes site/images/orange2_t.png | Bin 0 -> 296 bytes site/images/orange3.png | Bin 0 -> 907 bytes site/images/orange3_t.png | Bin 0 -> 280 bytes site/images/red1.png | Bin 0 -> 1040 bytes site/images/red1_t.png | Bin 0 -> 298 bytes site/images/red2.png | Bin 0 -> 922 bytes site/images/red2_t.png | Bin 0 -> 294 bytes site/images/red3.png | Bin 0 -> 1023 bytes site/images/red3_t.png | Bin 0 -> 300 bytes site/images/yellow1.png | Bin 0 -> 922 bytes site/images/yellow1_t.png | Bin 0 -> 298 bytes site/images/yellow2.png | Bin 0 -> 923 bytes site/images/yellow2_t.png | Bin 0 -> 296 bytes site/images/yellow3.png | Bin 0 -> 906 bytes site/images/yellow3_t.png | Bin 0 -> 279 bytes site/index.html | 1 + site/models/colour.php | 174 +++++++++++++ site/models/colours.php | 52 ++++ site/models/index.html | 1 + site/views/colour/index.html | 1 + site/views/colour/tmpl/default.php | 81 ++++++ site/views/colour/tmpl/default.xml | 16 ++ site/views/colour/tmpl/index.html | 1 + site/views/colour/tmpl/lightbox.php | 95 +++++++ site/views/colour/view.html.php | 68 ++++++ site/views/colours/index.html | 1 + site/views/colours/tmpl/default.php | 55 +++++ site/views/colours/tmpl/default.xml | 18 ++ site/views/colours/tmpl/index.html | 1 + site/views/colours/view.html.php | 48 ++++ site/views/index.html | 1 + 75 files changed, 1529 insertions(+) create mode 100644 LICENSE.txt create mode 100644 README.txt create mode 100644 admin/ajaxdemo.php create mode 100644 admin/controller.php create mode 100644 admin/controllers/ajaxdemo.php create mode 100644 admin/controllers/index.html create mode 100644 admin/index.html create mode 100644 admin/sql/index.html create mode 100644 admin/sql/install.mysql.utf8.sql create mode 100644 admin/sql/uninstall.mysql.utf8.sql create mode 100644 admin/sql/updates/index.html create mode 100644 admin/sql/updates/mysql/1.0.0.sql create mode 100644 admin/sql/updates/mysql/index.html create mode 100644 admin/tables/colour.php create mode 100644 admin/tables/colours.php create mode 100644 admin/tables/index.html create mode 100644 admin/views/ajaxdemo/index.html create mode 100644 admin/views/ajaxdemo/tmpl/default.php create mode 100644 admin/views/ajaxdemo/tmpl/index.html create mode 100644 admin/views/ajaxdemo/view.html.php create mode 100644 admin/views/index.html create mode 100644 ajaxdemo.xml create mode 100644 modal.js.txt create mode 100644 site/ajaxdemo.php create mode 100644 site/controller.php create mode 100644 site/controllers/colour.php create mode 100644 site/controllers/colours.php create mode 100644 site/controllers/index.html create mode 100644 site/images/blue1.png create mode 100644 site/images/blue1_t.png create mode 100644 site/images/blue2.png create mode 100644 site/images/blue2_t.png create mode 100644 site/images/blue3.png create mode 100644 site/images/blue3_t.png create mode 100644 site/images/green1.png create mode 100644 site/images/green1_t.png create mode 100644 site/images/green2.png create mode 100644 site/images/green2_t.png create mode 100644 site/images/green3.png create mode 100644 site/images/green3_t.png create mode 100644 site/images/index.html create mode 100644 site/images/orange1.png create mode 100644 site/images/orange1_t.png create mode 100644 site/images/orange2.png create mode 100644 site/images/orange2_t.png create mode 100644 site/images/orange3.png create mode 100644 site/images/orange3_t.png create mode 100644 site/images/red1.png create mode 100644 site/images/red1_t.png create mode 100644 site/images/red2.png create mode 100644 site/images/red2_t.png create mode 100644 site/images/red3.png create mode 100644 site/images/red3_t.png create mode 100644 site/images/yellow1.png create mode 100644 site/images/yellow1_t.png create mode 100644 site/images/yellow2.png create mode 100644 site/images/yellow2_t.png create mode 100644 site/images/yellow3.png create mode 100644 site/images/yellow3_t.png create mode 100644 site/index.html create mode 100644 site/models/colour.php create mode 100644 site/models/colours.php create mode 100644 site/models/index.html create mode 100644 site/views/colour/index.html create mode 100644 site/views/colour/tmpl/default.php create mode 100644 site/views/colour/tmpl/default.xml create mode 100644 site/views/colour/tmpl/index.html create mode 100644 site/views/colour/tmpl/lightbox.php create mode 100644 site/views/colour/view.html.php create mode 100644 site/views/colours/index.html create mode 100644 site/views/colours/tmpl/default.php create mode 100644 site/views/colours/tmpl/default.xml create mode 100644 site/views/colours/tmpl/index.html create mode 100644 site/views/colours/view.html.php create mode 100644 site/views/index.html diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..df50810 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,340 @@ +GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..7f6c153 --- /dev/null +++ b/README.txt @@ -0,0 +1,25 @@ +Ajax Demo + +Demonstrating Ajax with Mootools in a Joomla component, this example creates +a rich and efficient popup user interface. + +Welcome to the com_ajaxdemo component to demonstrate one of the many uses of Ajax + +After installing this component, just add a menu item of type 'Ajaxdemo/Colour List Layout' +to a menu, then you will be able to see a list of colours that can be clicked to open in a popup box. + +Search engines and browsers without javascript see the content through normal html pages. + +If you are not getting a popup box, then media/system/js/modal.js and +media/system/js/modal-uncompressed.js may not have been fixed, if not, then simply append the +contents of modal.js.txt that came with the zip installation to both files. + +Copyright Persistent Objects Ltd + +License +GNU General Public License version 2 or later; see LICENSE.txt + +Thanks +The graphics were created using the Gnu image manipulation program http://www.gimp.org/ +Thanks to Wikipedia for the colour wavelengths. +Thanks to http://www.lipsum.com/ for additional text. \ No newline at end of file diff --git a/admin/ajaxdemo.php b/admin/ajaxdemo.php new file mode 100644 index 0000000..4bf0b74 --- /dev/null +++ b/admin/ajaxdemo.php @@ -0,0 +1,22 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +**/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +$controller = JController::getInstance('Ajaxdemo'); +$controller->execute(JRequest::getCmd('task')); +$controller->redirect(); diff --git a/admin/controller.php b/admin/controller.php new file mode 100644 index 0000000..70e21b2 --- /dev/null +++ b/admin/controller.php @@ -0,0 +1,32 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +/** +* Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* @link http://p-o.co.uk/ +*/ +class AjaxdemoController extends JController +{ +} diff --git a/admin/controllers/ajaxdemo.php b/admin/controllers/ajaxdemo.php new file mode 100644 index 0000000..1c0f103 --- /dev/null +++ b/admin/controllers/ajaxdemo.php @@ -0,0 +1,35 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +**/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +/** +* Check controller +* +* PHP version 5.3 +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoControllerAjaxdemo extends JController +{ +} diff --git a/admin/controllers/index.html b/admin/controllers/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/controllers/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/index.html b/admin/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/sql/index.html b/admin/sql/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/sql/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/sql/install.mysql.utf8.sql b/admin/sql/install.mysql.utf8.sql new file mode 100644 index 0000000..a061251 --- /dev/null +++ b/admin/sql/install.mysql.utf8.sql @@ -0,0 +1,66 @@ +CREATE TABLE IF NOT EXISTS `#__ajaxdemo_colours` ( +`id` int(11) NOT NULL auto_increment, +`ordering` int(11) NOT NULL default 0, +`published` int(1) NOT NULL default 0, +`featured` int(1) NOT NULL default 0, +`title` varchar(100) NOT NULL, +`alias` varchar(100) NOT NULL, +`notes` varchar(500) NOT NULL, +PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `#__ajaxdemo_colour` ( +`id` int(11) NOT NULL auto_increment, +`colour_id` int(11) NOT NULL, +`ordering` int(11) NOT NULL, +`published` int(1) NOT NULL, +`dflt` int(1) NOT NULL, +`title` varchar(100) NOT NULL, +`alias` varchar(100) NOT NULL, +`main_image` varchar(100) NOT NULL, +`thumbnail_image` varchar(100) NOT NULL, +`notes` text NOT NULL, +PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8; + +INSERT INTO `#__ajaxdemo_colours` (id, ordering, published, featured, title, alias, notes) +VALUES (1, 1, 1, 1, 'Red', 'red', 'Red is a colour with a wavelength of about 700–635 nm'); +INSERT INTO `#__ajaxdemo_colours` (id, ordering, published, featured, title, alias, notes) +VALUES (2, 2, 1, 1, 'Orange', 'orange', 'Orange is a colour with a wavelength of about 635–590 nm'); +INSERT INTO `#__ajaxdemo_colours` (id, ordering, published, featured, title, alias, notes) +VALUES (3, 3, 1, 1, 'Yellow', 'yellow', 'Yellow is a colour with a wavelength of about 590–560 nm'); +INSERT INTO `#__ajaxdemo_colours` (id, ordering, published, featured, title, alias, notes) +VALUES (4, 4, 1, 1, 'Green', 'green', 'Green is a colour with a wavelength of about 560–490 nm'); +INSERT INTO `#__ajaxdemo_colours` (id, ordering, published, featured, title, alias, notes) +VALUES (5, 5, 1, 1, 'Blue', 'Blue', 'Blue is a colour with a wavelength of about 490–450 nm'); + +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (1, 1, 0, 1, 1, 'Red1', 'red1', 'red1.png', 'red1_t.png', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eleifend egestas nulla at lobortis. Integer placerat, nunc pharetra varius sagittis.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (2, 1, 1, 1, 0, 'Red2', 'red2', 'red2.png', 'red2_t.png', 'Velit eros congue risus, sit amet volutpat ipsum tortor imperdiet justo. Cras faucibus, urna non cursus porttitor, nunc nibh ornare lacus, sit amet posuere nisi lectus in metus. Cras pulvinar sodales mauris porta semper. Proin magna odio, egestas in euismod sed.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (3, 1, 2, 1, 0, 'Red3', 'red2', 'red3.png', 'red3_t.png', 'Consequat vel orci. Donec lacinia ligula justo, sed venenatis neque. Curabitur tempor, nulla vel gravida elementum, justo nulla posuere libero, eget convallis augue massa ac purus. Praesent tempor nibh sit amet diam gravida vitae rhoncus est placerat. Sed porttitor vehicula mauris.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (4, 2, 0, 1, 1, 'Orange1', 'orange1', 'orange1.png', 'orange1_t.png', 'Eget feugiat augue aliquam ut. Nam odio mi, consectetur sit amet accumsan eget, pretium porta mauris. Maecenas mollis.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (5, 2, 1, 1, 0, 'Orange2', 'orange2', 'orange2.png', 'orange2_t.png', 'Elit vel vulputate suscipit, ligula dui euismod dolor, condimentum accumsan diam urna nec mauris. Donec condimentum consequat dui.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (6, 2, 2, 1, 0, 'Orange3', 'orange3', 'orange3.png', 'orange3_t.png', 'Vitae aliquet libero congue eu. Vestibulum tristique lobortis ipsum, a varius neque lobortis nec. Morbi ac ullamcorper est.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (7, 3, 0, 1, 1, 'Yellow1', 'yellow1', 'yellow1.png', 'yellow1_t.png', 'Nunc dictum tempor diam in porttitor.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (8, 3, 1, 1, 0, 'Yellow2', 'yellow2', 'yellow2.png', 'yellow2_t.png', 'Praesent ultricies nisl non elit eleifend eu tincidunt mauris sodales. Phasellus at ligula magna. Praesent et libero nec nulla consequat scelerisque.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (9, 3, 2, 1, 0, 'Yellow3', 'yellow3', 'yellow3.png', 'yellow3_t.png', 'Sed eget massa commodo mauris scelerisque ullamcorper. Quisque id gravida ante. Etiam vulputate metus odio. Curabitur egestas sapien in erat tempor accumsan.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (10, 4, 0, 1, 1, 'Green1', 'green1', 'green1.png', 'green1_t.png', 'Nunc justo augue, dapibus vitae ullamcorper non, malesuada vitae quam. Pellentesque adipiscing iaculis nibh sit amet pretium.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (11, 4, 1, 1, 0, 'Green2', 'green2', 'green2.png', 'green2_t.png', 'Vestibulum vel consectetur augue. Nunc non velit vitae lorem elementum rhoncus eu id dolor. Sed pretium sagittis purus sed ultricies.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (12, 4, 2, 1, 0, 'Green3', 'green3', 'green3.png', 'green3_t.png', 'Sed adipiscing, lectus placerat hendrerit pulvinar, massa ipsum posuere nunc, et aliquam magna erat eu turpis.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (13, 5, 0, 1, 1, 'Blue1', 'blue1', 'blue1.png', 'blue1_t.png', 'Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (14, 5, 1, 1, 0, 'Blue2', 'blue2', 'blue2.png', 'blue2_t.png', 'Vivamus cursus malesuada sem, quis fringilla nulla lacinia et.'); +INSERT INTO `#__ajaxdemo_colour` (id, colour_id, ordering, published, dflt, title, alias, main_image, thumbnail_image, notes) +VALUES (15, 5, 2, 1, 0, 'Blue3', 'blue3', 'blue3.png', 'blue3_t.png', 'Cras id turpis quis nisl hendrerit condimentum ut nec mi. Proin dictum sem nec lorem viverra id tempus orci tincidunt.'); diff --git a/admin/sql/uninstall.mysql.utf8.sql b/admin/sql/uninstall.mysql.utf8.sql new file mode 100644 index 0000000..aeb49cf --- /dev/null +++ b/admin/sql/uninstall.mysql.utf8.sql @@ -0,0 +1,2 @@ +DROP TABLE `#__ajaxdemo_colours`; +DROP TABLE `#__ajaxdemo_colour`; diff --git a/admin/sql/updates/index.html b/admin/sql/updates/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/sql/updates/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/sql/updates/mysql/1.0.0.sql b/admin/sql/updates/mysql/1.0.0.sql new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/admin/sql/updates/mysql/1.0.0.sql @@ -0,0 +1 @@ + diff --git a/admin/sql/updates/mysql/index.html b/admin/sql/updates/mysql/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/sql/updates/mysql/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/tables/colour.php b/admin/tables/colour.php new file mode 100644 index 0000000..f9c3adc --- /dev/null +++ b/admin/tables/colour.php @@ -0,0 +1,42 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +/** +* Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class TableColour extends JTable +{ + /** + * Constructor + * + * @param object &$db Database connector object + * + * @return void + */ + function TableColour( &$db ) + { + parent::__construct('#__ajaxdemo_colour', 'id', $db); + } + +} diff --git a/admin/tables/colours.php b/admin/tables/colours.php new file mode 100644 index 0000000..3b151eb --- /dev/null +++ b/admin/tables/colours.php @@ -0,0 +1,42 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +/** +* Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class TableColours extends JTable +{ + /** + * Constructor + * + * @param object &$db Database connector object + * + * @return void + */ + function TableColours( &$db ) + { + parent::__construct('#__ajaxdemo_colours', 'id', $db); + } + +} diff --git a/admin/tables/index.html b/admin/tables/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/tables/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/views/ajaxdemo/index.html b/admin/views/ajaxdemo/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/views/ajaxdemo/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/views/ajaxdemo/tmpl/default.php b/admin/views/ajaxdemo/tmpl/default.php new file mode 100644 index 0000000..d7f4d3a --- /dev/null +++ b/admin/views/ajaxdemo/tmpl/default.php @@ -0,0 +1,41 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +?> +

Ajaxdemo

+

Welcome to the com_ajaxdemo component to demonstrate one of the many uses of +Ajax

+

After installing this component, just add a menu item of type 'Ajaxdemo/Colour +List Layout' to a menu, then you will be able to see a list of colours that can be +clicked to open in a popup box.

+

Search engines and browsers without javascript see the content through normal +html pages.

+

If you are not getting a popup box, then media/system/js/modal.js and +media/system/js/modal-uncompressed.js may not have been fixed, if not, then +simply append the contents of modal.js.txt that came with the zip installation to +both files.

+

Copyright

+

Persistent Objects Ltd 2010-2012

+

http://p-o.co.uk

+

License

+

GNU General Public License version 2 or later; see LICENSE.txt

+

Thanks

+

The graphics were created using the Gnu image manipulation program +http://www.gimp.org/

+

Thanks to Wikipedia for the colour wavelengths.

+

Thanks to http://www.lipsum.com/ for additional text.

\ No newline at end of file diff --git a/admin/views/ajaxdemo/tmpl/index.html b/admin/views/ajaxdemo/tmpl/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/views/ajaxdemo/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/admin/views/ajaxdemo/view.html.php b/admin/views/ajaxdemo/view.html.php new file mode 100644 index 0000000..35a378d --- /dev/null +++ b/admin/views/ajaxdemo/view.html.php @@ -0,0 +1,61 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +// no direct access +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.view'); + +/** +* HTML View class for the Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @subpackage Components +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoViewAjaxdemo extends JView +{ + /** + * Display method for Check + * + * @param string $tpl Template to display + * + * @return void + **/ + function display($tpl = null) + { + // Set the toolbar + JToolBarHelper::title('Ajax demo'); + + //JSubMenuHelper::addEntry( + // 'Ajaxdemo', + // 'index.php?option=com_ajaxdemo&view=ajaxdemo', + // true + //); + + // Display the template + parent::display($tpl); + + // Set the document + $document = JFactory::getDocument(); + $document->setTitle('Ajaxdemo'); + } + +} diff --git a/admin/views/index.html b/admin/views/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/admin/views/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ajaxdemo.xml b/ajaxdemo.xml new file mode 100644 index 0000000..48e77de --- /dev/null +++ b/ajaxdemo.xml @@ -0,0 +1,56 @@ + + + Ajaxdemo + March 2010 + Persistent Objects Ltd + ahicks@p-o.co.uk + http://p-o.co.uk + Copyright Persistent Objects 2010-2012 + GNU General Public License version 2 or later; see LICENSE.txt + 1.1.0 + Joomla Component to demonstrate Ajax with Mootools to create a rich and efficient popup user interface. + Just add a menu item of type 'Ajaxdemo/Colour List Layout' to see it in action + + + + + sql/install.mysql.utf8.sql + + + + + sql/uninstall.mysql.utf8.sql + + + + + sql/updates/mysql + + + + + index.html + controller.php + ajaxdemo.php + images + controllers + models + views + + + + + index.html + controller.php + ajaxdemo.php + controllers + sql + tables + views + + Ajaxdemo + + Ajaxdemo + + + \ No newline at end of file diff --git a/modal.js.txt b/modal.js.txt new file mode 100644 index 0000000..62d417f --- /dev/null +++ b/modal.js.txt @@ -0,0 +1,17 @@ +SqueezeBox.handlers.extend({ + ajax: function(url) { + var options = this.options.ajaxOptions || {}; + this.asset = new Request.HTML(Object.merge({ + method: 'get', + evalScripts: false, + onSuccess: function() { + this.applyContent(this.asset.response.html); + if (options.evalScripts !== null && options.evalScripts) Browser.exec(this.asset.response.javascript); + this.fireEvent('onAjax', [this.asset.response.html, this.asset]); + this.asset = null; + }.bind(this), + onFailure: this.onError.bind(this) + }, this.options.ajaxOptions)); + this.asset.send.delay(10, this.asset, [{url: url}]); + } +}); diff --git a/site/ajaxdemo.php b/site/ajaxdemo.php new file mode 100644 index 0000000..a02ec59 --- /dev/null +++ b/site/ajaxdemo.php @@ -0,0 +1,25 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +// No direct access +defined('_JEXEC') or die('Restricted access'); + +// import joomla controller library +jimport('joomla.application.component.controller'); + +// Get an instance of the controller prefixed by Kjandrews +$controller = JController::getInstance('Ajaxdemo'); +$controller->execute(JRequest::getCmd('task')); +$controller->redirect(); diff --git a/site/controller.php b/site/controller.php new file mode 100644 index 0000000..fec7ac0 --- /dev/null +++ b/site/controller.php @@ -0,0 +1,33 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +// No direct access +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +/** +* Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoController extends JController +{ +} diff --git a/site/controllers/colour.php b/site/controllers/colour.php new file mode 100644 index 0000000..db867f0 --- /dev/null +++ b/site/controllers/colour.php @@ -0,0 +1,32 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +/** +* Controller for Ajax demonstration +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoControllerColour extends JController +{ +} diff --git a/site/controllers/colours.php b/site/controllers/colours.php new file mode 100644 index 0000000..6e720a8 --- /dev/null +++ b/site/controllers/colours.php @@ -0,0 +1,32 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.controller'); + +/** +* Controller for Ajax demonstration +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoControllerColours extends JController +{ +} diff --git a/site/controllers/index.html b/site/controllers/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/controllers/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/images/blue1.png b/site/images/blue1.png new file mode 100644 index 0000000000000000000000000000000000000000..a38f2aa430a762cee0566d7dff10687d0385ac64 GIT binary patch literal 1042 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvi|3k+<8Q9s*K~#X;^)4C~IxyaaOClDyqr z82*Fcg1yTp14TFsJR*x37`TN&n2}-D90{Nxdx@v7EBhU087_I|was=PfkLvGArU3c z`MJ5Nc_lzD1A}u>YGO%hib8p2Nrr;Er*A-tUMf2S19PUQi(^Q|t+!VV85s;X4s0-d z?BU9l@!+AC%9qTPQhSDoUqTEC3Jek)3~WpdjSN6UOCH1$m<_b%!8`@AkLo;_Hy~j~ qW8P@Q0OOC?DC}TCR!WzciIH0JgLMmg{-xWX-011*=d#Wzp$Py_FtQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%rabxYRjEIo(2lZW`;zRIOpf) zrskCZxeN@>MX8A;sVNHOnI#zt?w-B@DSD~wK=DRT7srr_TW>EIGBOx&Ff7>l$j!7X z?8C=q4wo?dvVBaEn^I0rQuS`s0W+35Oan856uiL<%?YYthR6w^8lVUlSn)I+R*0@? c1htnYG0bgd`mB+1PZi`!Pgg&ebxsLQ0B%-b#sB~S literal 0 HcmV?d00001 diff --git a/site/images/blue2.png b/site/images/blue2.png new file mode 100644 index 0000000000000000000000000000000000000000..65ce45bc4e97053026636022479a6f7b27512002 GIT binary patch literal 922 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%AkByV>Y zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD%;FGQ4{MP)Ig2B%;JQ zKQ}iuuLQ_tU~n!+KasK?Vkn!y6jw z&o5xsn|Q%pdnQB71tEqu)`W_I<_!bM^l i3plA!=q0@Avu0b~Cg$+hWsm-Wa)qa>pUXO@geCw?>F3%2 literal 0 HcmV?d00001 diff --git a/site/images/blue2_t.png b/site/images/blue2_t.png new file mode 100644 index 0000000000000000000000000000000000000000..ab59682aaa5a79fa97f000b0a99d5cd37796cd11 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%raa`A}%{VcL0TCGeaUuobz*Y zQ}arITm}Z`qSVBa)D(sC%#sWRcTeAd6une-pm?39i(^Q|t+y8p85tNjm=|RJKNofI zIKNWB$(Gq+3f|LnA~&UIPEZ9iL{3ZsGq_Stf*GuvAPgp;8jwgMNb$)@OC7+vP6iRw Z9;d@m#yB0F6*2UngD&yT&Vy6 literal 0 HcmV?d00001 diff --git a/site/images/blue3.png b/site/images/blue3.png new file mode 100644 index 0000000000000000000000000000000000000000..d789b80b37caa80edb4c425971692ceaae825be0 GIT binary patch literal 908 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%A+0*}aI z1_o|n5N2eUHAey{$X?><>&kwIS%zDdfxRyMA5cg(GbEzKIX^cyHLnE7WngeFN=+EaktaqI0BLqP@u4u*|E2YVupu~|J3;QjEnx?oJHr&dIz4i4}N67Bet# z3xhBt!>lS|xv6<2KrRD=b5UwyNotBh zd1gt5g1e`0K#E=}J5apQ)5S5Q;?~;>ii`{f91I&iAMnr$ZswA>BbGSvYX98z4%2iZ zH>I2mQt$>dG$*Kn86qbpff-yWC&3I>pc)W^38WavXawt;w3MLsxe@`Nm=a%${gDT` N($m$?Wt~$(698JWSJeOj literal 0 HcmV?d00001 diff --git a/site/images/green1.png b/site/images/green1.png new file mode 100644 index 0000000000000000000000000000000000000000..b52a6cd53a4250c64e50d6b3d3d1cfa724e17fcf GIT binary patch literal 922 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%AkByV>Y zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD(v7ddeRbppa~4NJNQq zer|4RUI~!Pz~Eeznpl#WqEMb$lA+-4=^K!um&(q-!1U46#WAGf*4rzNf(#5Chc`6V zpI^YNH}QhIws3=R6w`qX3_RQhIt+)I40OP3AOT_n2_9}DC5cvu*NRb7um}Ax3YWu^ k7)VQ5*b@xC^x1G;EPo?&`2P6fcu=nJboFyt=akR{0MlRkcmMzZ literal 0 HcmV?d00001 diff --git a/site/images/green1_t.png b/site/images/green1_t.png new file mode 100644 index 0000000000000000000000000000000000000000..49340089a1ff4f53699a90774c0bf1130a53841f GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%rabx#;4|sDgcFKGeaUuobz*Y zQ}arITm}Z`qSVBa)D(sC%#sWRcTeAd6une-pm?39i(^Q|t+y8p85tNjm=|RJKNofI zIKNWB%z`UiDJLhXdQa0~-2`DUMM4;jI$*|9hiPC&kOEK*P(*VANO9yQkrQBDkp#70 Z>t^LFWt=*d|D-g?iJq>0F6*2UngDa>UH||9 literal 0 HcmV?d00001 diff --git a/site/images/green2.png b/site/images/green2.png new file mode 100644 index 0000000000000000000000000000000000000000..f327fd396757a9ba45146fcd0f1d0ec7cec09100 GIT binary patch literal 1042 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvi|3k+<8Q9s*K~#X;^)4C~IxyaaOClDyqr z82*Fcg1yTp14TFsJR*x37`TN&n2}-D90{Nxdx@v7EBhU087?^n-HCA^^JOzbB1)X| zb8}PkN`PDj2Ir#G#FEq$h4Rdj3F!Z?76MG8k|iIk5cS zT?GM?lEht;C#X(6$HHJ|%gJCMz`(=8z|45SfdPnU$%9w|vw_w;n5Q82QJn|#1|-aA p%o~juVEhpqg)U6UO6d|adb$s$vvAE(340F8jh?Q4F6*2UngExIn}PrU literal 0 HcmV?d00001 diff --git a/site/images/green2_t.png b/site/images/green2_t.png new file mode 100644 index 0000000000000000000000000000000000000000..0c9b90f485a678cd74dc64bcd6f77459f077f70e GIT binary patch literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%raa`Y}*-|4giH@GeaUuobz*Y zQ}arITm}Z`qSVBa)D(sC%#sWRcTeAd6une-pm@Efi(^Q|t+y8p85tNjm=|RJHxt{^ z)GzO{!06!$(G!zYy{G9!a;2OEGgvo47)+56MxzdxvD5*m1}GAw08+duMRNjJ*Cr7{ b+SiD4-)dp>G!~3Z2D#DG)z4*}Q$iB}WpG@D literal 0 HcmV?d00001 diff --git a/site/images/green3.png b/site/images/green3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7dcb12244dfb3e2d5679f6a8176f4575fa0548 GIT binary patch literal 908 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%A+0*}aI z1_o|n5N2eUHAey{$X?><>&kwIS%zCic-C$4M4*stW=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<3fz`*p?)5S5Q;?~+= z2i^=4VhxFmZLA3q3~j7nwuBg%oe%*OCr*-Rg?OzPH3b;lSb}~Sg-b$&5HJalkg~8R g7%YK=P*`x2!A_Y)c%Me0A}D8gy85}Sb4q9e0O4HVZvX%Q literal 0 HcmV?d00001 diff --git a/site/images/green3_t.png b/site/images/green3_t.png new file mode 100644 index 0000000000000000000000000000000000000000..af01114304dd87c2f154af9bd9562259761b2608 GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4i4}N67Bet# z3xhBt!>lI2mQt$>dG$*Kn86qbpff-yWC&3I>pc)W^38WavXawt;w3MLsxf17GnF7sUJIRAw N>FMg{vd$@?2>@BhR^R{t literal 0 HcmV?d00001 diff --git a/site/images/index.html b/site/images/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/images/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/images/orange1.png b/site/images/orange1.png new file mode 100644 index 0000000000000000000000000000000000000000..79f401b679d2ec5682e67976f00a45c0e927a5fd GIT binary patch literal 1041 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvi|3k+<8Q9s*K~#X;^)4C~IxyaaOClDyqr z82*Fcg1yTp14TFsJR*x37`TN&n2}-D90{Nxdx@v7EBhU087?_d2cKOJfkLvGArU3c z`MJ5Nc_lzD1A}u>YGO%hib8p2Nrr;Er*A-tUMf2S19OI_i(^Q|t+!VV85s;X4j3Hx zF^AveLxHN$FO&b>d<+pWt~$(69DWYohtwU literal 0 HcmV?d00001 diff --git a/site/images/orange1_t.png b/site/images/orange1_t.png new file mode 100644 index 0000000000000000000000000000000000000000..0d2745ba622ef133e54ff01f7262830df8dab4e1 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%rac^YR}qVZ37C)W`;zRIOpf) zrskCZxeN@>MX8A;sVNHOnI#zt?w-B@DSD~wK=C?H7srr_TW>Eo3NkRTFc^qjzq9he zY zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD(93`%OjxP)Ig2B%;JQ zKQ}iuuLQ_tU~n!+KasK?VjE2FD{I z!H$+Q?s9zJF^8`~*o*1F1_mB(109CLOa?k&Hjn_ZfdmgXk&;9!#B0T lNerZ=EbIveU;1n~FP5{JIW^4k+YC^)@O1TaS?83{1OTKJ`sV-u literal 0 HcmV?d00001 diff --git a/site/images/orange2_t.png b/site/images/orange2_t.png new file mode 100644 index 0000000000000000000000000000000000000000..c660405c41a2916ac7fc604927400155226e0436 GIT binary patch literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%rac^<~`=8T!2EdnIRD+&iT2y zsd*(pE(3#eQEFmIYKlU6W=V#EyQgnJie4%^P`uvL#WAGf*4qn)j0_Ac3M#w=2vYC{Gc+dv)c{3APJk5aL~=oN=@8WZ a`Y6+#Ta1hIX0NCLxzW?r&t;ucLK6T5N?xe| literal 0 HcmV?d00001 diff --git a/site/images/orange3.png b/site/images/orange3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f208dcfccfeb83b6c0a9b1d11f87509571fcc02 GIT binary patch literal 907 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%A+0*}aI z1_o|n5N2eUHAey{$X?><>&kwIS%zCyd-b7t`+!2SnIRD+&iT2ysd*(pE(3#eQEFmI zYKlU6W=V#EyQgnJie4%^0|V0+PZ!6Kid%25I0`Zta2(iR*l6LR{i4BJ<;%qvr`R_f zoX%jN!*H01hx@<=1|DuO+dv1*1`>yvh?FE+Azmv+O~D@Y!zWx0Y)}EFGE!0&)&zq$ ceLmR4xG9CjY5&Xbv7n6M>FVdQ&MBb@0M9=Cr~m)} literal 0 HcmV?d00001 diff --git a/site/images/orange3_t.png b/site/images/orange3_t.png new file mode 100644 index 0000000000000000000000000000000000000000..987e2a0fcf3083f5e0b31bc3da63ec660ba80985 GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4i4}N67Bet# z3xhBt!>lS|xv6<2KrRD=b5UwyNotBh zd1gt5g1e`0K#E=}J5apQ)5S5Q;?~;>hKvjb91II~Hkg^L4*T%2nZqUAu52Guu}-;E!wfkLvGArU3c z`MJ5Nc_lzD1A}u>YGO%hib8p2Nrr;Er*A-tUMf2S19Q5ki(^Q|t+!VV85tNj4sU3z zKfj={U3=n%<)$ZD82X}^7CZ^Fc=7c5G{ESOJFw8mVBUa)8I5_P s5yQ+#bQDemCVOat21W}#Vy3~L``<>EFp~;p7EoUFboFyt=akR{01gqIx&QzG literal 0 HcmV?d00001 diff --git a/site/images/red1_t.png b/site/images/red1_t.png new file mode 100644 index 0000000000000000000000000000000000000000..6afe325259c419bd9da944b8e6d043cad6788e66 GIT binary patch literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!3HGTB$T!TDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#4zmoGvhq{8^kYCF+02lL66gHf z+|;}hAeVu`xhOTUBsE2$JhLQ2!QIn0AVn{g9Vp)D>EaktaqI0xLq-Mzo(2P}|MQ}y yt(#bkqG#`W8Oh+{(7?eVz{sei;J`u?_EpAj?o3m5c`dmNa;2xMpUXO@geCxuTtvM9 literal 0 HcmV?d00001 diff --git a/site/images/red2.png b/site/images/red2.png new file mode 100644 index 0000000000000000000000000000000000000000..b384af1855241d8c6fa7e7a1fd408f540a8f139f GIT binary patch literal 922 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%AkByV>Y zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD({#Zs|G!ppa~4NJNQq zer|4RUI~!Pz~Eeznpl#WqEMb$lA+-4=^K!um&(q-!1U46#WAGf*4rzNf(#5ChYcKl zObP0l+XkK>JH}p literal 0 HcmV?d00001 diff --git a/site/images/red2_t.png b/site/images/red2_t.png new file mode 100644 index 0000000000000000000000000000000000000000..5568d255c1ee59ee5a845d41e587e497c6d0e67b GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%raam%B$i(G6IEUGeaUuobz*Y zQ}arITm}Z`qSVBa)D(sC%#sWRcTeAd6une-pm?pPi(^Q|t+y8pf!a8j6-<9kiavOp zU+IG8I=4oh$W19HCoOfD24(~)c!L?56I8(rkrR`^3@)G=5Q7z@7|37(>r(Y5sJ&|A X&n!j>wc>ltAQyVN`njxgN@xNA=pkLf literal 0 HcmV?d00001 diff --git a/site/images/red3.png b/site/images/red3.png new file mode 100644 index 0000000000000000000000000000000000000000..ab44e82fb93495f82b801ac7615ffc5be2291d7a GIT binary patch literal 1023 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvi|3k+<8Q9s*K~#X;^)4C~IxyaaMM3p^r= z85p>QL70(Y)*K0-AbW|YuPgfMX8A; zsVNHOnI#zt?w-B@DSD~w3=GT}o-U3d6}R4AHDqL9U}11nxw4-}QfJw2j{P-$-&q)B zrm`?da4@hjH8e6LD1ZhoaUfP@*1d7}}-#zb@!DlsA}rAy4r Z7rPt7@{Q-u))S!2=;`X`vd$@?2>=yluO{XE)7O>#4zmom2+PHb66=6MvY8S| zxv6<2KrRD=b5UwyNotBhd1gt5g1e`0K#E=}J5apY)5S5Q;?~=XhKvjh9EUeFI{lf= zC@r(HWm#F;V)L!64lFDk4Ge+;3QSBcG+|G9!jSrw*(Ad4ZX3v*p00i_>zopr0R03< AIsgCw literal 0 HcmV?d00001 diff --git a/site/images/yellow1.png b/site/images/yellow1.png new file mode 100644 index 0000000000000000000000000000000000000000..20768e8caa5a1b1ae445f6fcfd59623701b4f253 GIT binary patch literal 922 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%AkByV>Y zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD$*q+$wcHP)Ig2B%;JQ zKQ}iuuLQ_tU~n!+KasK?Vkn!v+WT zKVQhKH}QhIwPu5`8`FUe3_RQhIt+)I40OP3AOT_n2_9}DC5cvu*NRb7um}Ax3YWu^ k7)VQ5*b@xC^x1G;Y;6upn7#s&FDO@dy85}Sb4q9e0Aif^1^@s6 literal 0 HcmV?d00001 diff --git a/site/images/yellow1_t.png b/site/images/yellow1_t.png new file mode 100644 index 0000000000000000000000000000000000000000..1db2573df700226fb2d126e33a18cc61788c7e43 GIT binary patch literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!3HGTB$T!TDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#4zmoGoQ}Mw5lE+OW=KSdbAE1a zYF-JD%fR4Vl$uzQnxasiS(2gP?&%wlqL<1J6mRr&aSW-r_4cA8BZC4%i@}!q=bPL5 y1smtCU7Ej3j6qO9fr-h*p@D-#fRPsLz^@DpJD4Zm5mEUIa;2xMpUXO@geCwC#6qP2 literal 0 HcmV?d00001 diff --git a/site/images/yellow2.png b/site/images/yellow2.png new file mode 100644 index 0000000000000000000000000000000000000000..862cdee126ddbccc914a9d14766564599a06445d GIT binary patch literal 923 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%AkByV>Y zhW{YAVDIwDKoQOYkH}&M25w;xW@MN(M*=9wUgGKN%6^AghD*U{Nwdgzppa~4NJNQq zer|4RUI~!Pz~Eeznpl#WqEMb$lA+-4=^K!um&(q-!1T$}#WAGf*4rzNf(#5ChYb$w zpDpRa9;39dzbuGBy@#bCkx@b{A%dZeH6a4b1`;4PP(VVANJ*j<;@~ literal 0 HcmV?d00001 diff --git a/site/images/yellow2_t.png b/site/images/yellow2_t.png new file mode 100644 index 0000000000000000000000000000000000000000..fb4b1394531291d36e647b5b7e785bb4e69714cf GIT binary patch literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^DM0Ma!2~2ZtF}G>QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O`_W6?jAzGca%qgD@k*tT_@uLG}_)Usv`!%rabx;@{?c{0J11%?ybsan8@p zP0cF-av2z$i&7IyQd1PlGfOfQ+&z5*QuI>Uf#UU^E{-7;x87bbWMp9AU{=^#KU;K5 zQ@^~+g2|6EL{3an^`52^$(3>v%wXLFVK7BP7>zn$#!?5M8lXs!0!ZU7HAM bUn9=l7Qpyt+LXV_AUArt`njxgN@xNAjB8(2 literal 0 HcmV?d00001 diff --git a/site/images/yellow3.png b/site/images/yellow3.png new file mode 100644 index 0000000000000000000000000000000000000000..8c097dc905aae35cb933786e3c14469354b6055b GIT binary patch literal 906 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKNIvh+uk)*3dQ-Ks?age(c!@6@aFM%A+0*}aI z1_o|n5N2eUHAey{$X?><>&kwIS%zCqGwQjEnx?oJHr&dIz4i4}N67Bet# z3xhBt!>lS|xv6<2KrRD=b5UwyNotBh zd1gt5g1e`0K#E=}J5apA)5S5Q;?~;>hP(_091I%_zs^ugXl!3U^}>r&$Ipc;cu&)b z+?1j@K^4ppIWY;$;7U0OX0UF8FqnX9Kq8GG#V02%bpY!+8AMRK9}k~8vy|Pc5Ic|~ NJzf1=);T3K0RT`oR!aZ? literal 0 HcmV?d00001 diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/models/colour.php b/site/models/colour.php new file mode 100644 index 0000000..5fe1db8 --- /dev/null +++ b/site/models/colour.php @@ -0,0 +1,174 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die(); + +jimport('joomla.application.component.model'); + +/** +* Model for Ajax demonstration +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoModelColour extends JModel +{ + + /** + * Retrieves the colour data + * + * @return stdClass containing the data from the database + */ + function getItem() + { + JLog::add(__METHOD__ . '()', JLog::ERROR, COM_AJAXDEMO); + // Lets load the data if it doesn't already exist + if (empty( $this->_data )) { + $row =& $this->getTable(); + $row->load(JRequest::getVar('id', 0, '', 'int')); + $this->_data =& $row; + } + if (!$this->_data) { + $this->_data = new stdClass(); + $this->_data->id = 0; + $this->_data->ordering = 0; + $this->_data->published = 1; + $this->_data->date = ''; + $this->_data->title = ''; + $this->_data->alias = ''; + $this->_data->url = ''; + $this->_data->material = ''; + $this->_data->size = ''; + $this->_data->notes = ''; + } + + return $this->_data; + } + + /** + * Retrieves the available colours in this series + * + * @return mixed The return value or null if the query failed. + */ + public function getColours() + { + // Get the current ordering + if (!$this->_data) { + $this->getItem(); + } + if (!$this->_data) { + return null; + } + + $db = JFactory::getDBO(); + $query = $db->getQuery(true); + $query->select('id, ordering, title, thumbnail_image'); + $query->from('#__ajaxdemo_colour'); + $query->where('published = 1'); + $query->where('colour_id = ' . $this->_data->colour_id); + $query->order('ordering asc'); + + $db->setQuery($query); + $result = $db->loadObjectList(); + + return $result; + } + + /** + * Retrieves the previous colour data + * + * @return stdClass containing the data from the database + */ + public function getPrevColour() + { + // Get the current ordering + if (!$this->_data) { + $this->getItem(); + } + if (!$this->_data) { + return false; + } + + $db = JFactory::getDBO(); + $query = $db->getQuery(true); + $query->select('s.id, c.id as colour_id, s.ordering, s.published'); + $query->select('s.featured, s.title, s.alias, c.thumbnail_image, s.notes'); + $query->from('#__ajaxdemo_colours s'); + $query->innerjoin('#__ajaxdemo_colour c ON s.id = c.colour_id '); + $query->where('s.published = 1'); + $query->where('c.published = 1 AND c.dflt = 1'); + $query->where( + 's.ordering < (' + . 'SELECT a.ordering ' + . 'FROM #__ajaxdemo_colours a ' + . 'INNER JOIN #__ajaxdemo_colour b ' + . 'ON a.id = b.colour_id ' + . 'WHERE b.id = '. $this->_data->id + . ')' + ); + $query->order('s.ordering desc'); + $query->limit(1); + + $db->setQuery($query); + $result = $db->loadObject(); + + return $result; + } + + /** + * Retrieves the next colour data + * + * @return stdClass containing the data from the database + */ + public function getNextColour() + { + // Get the current ordering + if (!$this->_data) { + $this->getItem(); + } + if (!$this->_data) { + return false; + } + + $db = JFactory::getDBO(); + $query = $db->getQuery(true); + $query->select('s.id, c.id as colour_id, s.ordering, s.published'); + $query->select('s.featured, s.title, s.alias, c.thumbnail_image, s.notes'); + $query->from('#__ajaxdemo_colours s'); + $query->innerjoin('#__ajaxdemo_colour c ON s.id = c.colour_id '); + $query->where('s.published = 1'); + $query->where('c.published = 1 AND c.dflt = 1'); + $query->where( + 's.ordering > (' + . 'SELECT a.ordering ' + . 'FROM #__ajaxdemo_colours a ' + . 'INNER JOIN #__ajaxdemo_colour b ' + . 'ON a.id = b.colour_id ' + . 'WHERE b.id = '. $this->_data->id + . ')' + ); + $query->order('s.ordering asc'); + $query->limit(1); + + $db->setQuery($query); + $result = $db->loadObject(); + + return $result; + } +} diff --git a/site/models/colours.php b/site/models/colours.php new file mode 100644 index 0000000..31d960e --- /dev/null +++ b/site/models/colours.php @@ -0,0 +1,52 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die(); + +jimport('joomla.application.component.modellist'); + +/** +* Model for Ajax demonstration +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoModelColours extends JModelList +{ + /** + * Returns list query + * + * @return string sql list query + */ + protected function getListQuery() + { + $db = JFactory::getDBO(); + $query = $db->getQuery(true); + $query->select('s.id, c.id as colour_id, s.ordering, s.published'); + $query->select('s.featured, s.title, s.alias, c.thumbnail_image, s.notes'); + $query->from('#__ajaxdemo_colours s'); + $query->innerjoin('#__ajaxdemo_colour c ON s.id = c.colour_id '); + $query->where('s.published = 1 AND s.featured = 1'); + $query->where('c.published = 1 AND c.dflt = 1'); + $query->order('s.ordering asc'); + + return $query; + } + +} diff --git a/site/models/index.html b/site/models/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/models/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/views/colour/index.html b/site/views/colour/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/views/colour/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/views/colour/tmpl/default.php b/site/views/colour/tmpl/default.php new file mode 100644 index 0000000..cc40d00 --- /dev/null +++ b/site/views/colour/tmpl/default.php @@ -0,0 +1,81 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +?> +
+
+

item->title ?>

+
item->notes;?>
+
+ +colours) > 1) { ?> +
+

 

+

More of this colour

+

colours as $item) { + $link = JRoute::_( + 'index.php?option=com_ajaxdemo&view=colour&id='.$item->id, false + ); + $image = 'components/com_ajaxdemo/images/' . $item->thumbnail_image;?> + + <?php echo $item->title ?> +

+
+ +
item->main_image; +?>' alt='title) +?>' />
+
+
+next_colour ) { + $link = JRoute::_( + 'index.php?option=com_ajaxdemo&view=colour&id=' + . $this->next_colour->colour_id, + false + );?> +

+ Next: next_colour->title ?>
+ next_colour->thumbnail_image;?>' + alt='next_colour->title ?>' /> +

+prev_colour ) { + $link = JRoute::_( + 'index.php?option=com_ajaxdemo&view=colour&id=' + . $this->prev_colour->colour_id, + false + );?> +

+ Previous: prev_colour->title ?>
+ prev_colour->thumbnail_image;?>' + alt='prev_colour->title ?>' /> +

+
+
\ No newline at end of file diff --git a/site/views/colour/tmpl/default.xml b/site/views/colour/tmpl/default.xml new file mode 100644 index 0000000..1bce6d9 --- /dev/null +++ b/site/views/colour/tmpl/default.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/views/colour/tmpl/index.html b/site/views/colour/tmpl/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/views/colour/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/views/colour/tmpl/lightbox.php b/site/views/colour/tmpl/lightbox.php new file mode 100644 index 0000000..0a29e40 --- /dev/null +++ b/site/views/colour/tmpl/lightbox.php @@ -0,0 +1,95 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); +$rel_handler="{handler: 'ajax'," + ." size: {x: 800, y: 450}," + ." onClose: function() {}," + ." onAjax: function() {" + ."SqueezeBox.assign($$('a.lightbox2')," + ." {parse: 'rel'});" + ."}," + ." ajaxOptions: {method: 'post'}}"; +?> + \ No newline at end of file diff --git a/site/views/colour/view.html.php b/site/views/colour/view.html.php new file mode 100644 index 0000000..999e69c --- /dev/null +++ b/site/views/colour/view.html.php @@ -0,0 +1,68 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +// no direct access +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.view'); + +/** +* HTML View class for the Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @subpackage Components +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoViewColour extends JView +{ + protected $item; + protected $colours; + + /** + * Display method for Colours + * + * @param string $tpl Template to display + * + * @return void + **/ + function display($tpl = null) + { + // Get data from the model + $this->item = $this->get('Item'); + $this->prev_colour = $this->get('PrevColour'); + $this->next_colour = $this->get('NextColour'); + $this->colours = $this->get('Colours'); + + if (JRequest::getMethod() == 'POST') { + JRequest::setVar('tmpl', 'component'); + $this->setLayout('lightbox'); + } + + // Check for errors. + if (count($errors = $this->get('Errors'))) { + JError::raiseError(500, implode('
', $errors)); + return false; + } + + parent::display($tpl); + + } + +} diff --git a/site/views/colours/index.html b/site/views/colours/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/views/colours/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/views/colours/tmpl/default.php b/site/views/colours/tmpl/default.php new file mode 100644 index 0000000..e9e9666 --- /dev/null +++ b/site/views/colours/tmpl/default.php @@ -0,0 +1,55 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +JHtml::_('behavior.modal', 'a.lightbox'); +JHtml::_('behavior.tooltip'); + +?> + +items as $item) { + $link = JRoute::_( + 'index.php?option=com_ajaxdemo&view=colour&id='.$item->colour_id, false + ); + $handler = "{" + . "handler: 'ajax', size: {x: 800, y: 450}, " + . "onClose: function() {}, " + . "onAjax: function() { " + . "SqueezeBox.assign($$('a.lightbox2'), {parse: 'rel'});" + . "}, " + . "ajaxOptions: {method: 'post'}" + . "}"; + $tooltip = ' title="'.htmlspecialchars(trim($item->title)) + . '::' + . htmlspecialchars(trim($item->notes)) + . '"'; + $imagesrc = 'components/com_ajaxdemo/images/' . $item->thumbnail_image;?> + + + +
+ rel=""> + <?php echo $item->title; ?> +
diff --git a/site/views/colours/tmpl/default.xml b/site/views/colours/tmpl/default.xml new file mode 100644 index 0000000..24a90c2 --- /dev/null +++ b/site/views/colours/tmpl/default.xml @@ -0,0 +1,18 @@ + + + + + + + + + Colour List Layout + Colour listing layout + + + + + + + + \ No newline at end of file diff --git a/site/views/colours/tmpl/index.html b/site/views/colours/tmpl/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/views/colours/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/views/colours/view.html.php b/site/views/colours/view.html.php new file mode 100644 index 0000000..bb44340 --- /dev/null +++ b/site/views/colours/view.html.php @@ -0,0 +1,48 @@ + +* @copyright 2010-2012 Persistent Objects Ltd +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ + +defined('_JEXEC') or die('Restricted access'); + +jimport('joomla.application.component.view'); + +/** +* HTML View class for the Ajax demonstration component +* +* @category Joomla_Component +* @package Com_Ajaxdemo +* @author Alan Hicks +* @license GNU General Public License version 2 or later; see LICENSE.txt +* +* @link http://p-o.co.uk/ +*/ +class AjaxdemoViewColours extends JView +{ + protected $items; + + /** + * Display method for Colours + * + * @param string $tpl Template to display + * + * @return void + **/ + function display($tpl = null) + { + $this->items = & $this->get('Items'); + + parent::display($tpl); + } +} diff --git a/site/views/index.html b/site/views/index.html new file mode 100644 index 0000000..5d5190f --- /dev/null +++ b/site/views/index.html @@ -0,0 +1 @@ + \ No newline at end of file