Loading LICENSE 0 → 100644 +21 −0 Original line number Original line Diff line number Diff line The MIT License (MIT) Copyright (c) 2014-2015 Frédéric Guillot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Plugin.php 0 → 100644 +15 −0 Original line number Original line Diff line number Diff line <?php namespace Plugin\Theme; use Core\PluginBase; class Plugin extends PluginBase { public function initialize() { $this->template->hook->attach('layout:head', 'theme:layout/head'); $this->template->hook->attach('layout:top', 'theme:layout/top'); $this->template->setTemplateOverride('header', 'theme:layout/header'); } } README.md 0 → 100644 +16 −0 Original line number Original line Diff line number Diff line Example of theme plugin ======================= This plugin override core templates and use template hooks to create a custom theme. - New CSS styles are added with the hook **layout:head** - A top bar is added to the layout by using the hook **layout:top** - The header template is replaced by a new one with a template override Installation ------------ - Create a directory **Theme** under the folder **plugins** - Copy all source files in this new directory - Go on your local installation of Kanboard - After the login, you should see the alterations to the default layout Template/layout/head.php 0 → 100644 +14 −0 Original line number Original line Diff line number Diff line <style> #top-bar { background: #666; color: #fff; text-align: center; line-height: 30px; } header nav { color: red; font-weight: bold; } </style> No newline at end of file Template/layout/header.php 0 → 100644 +6 −0 Original line number Original line Diff line number Diff line <header> <nav> <?= $this->e($title) ?> </nav> </header> No newline at end of file Loading
LICENSE 0 → 100644 +21 −0 Original line number Original line Diff line number Diff line The MIT License (MIT) Copyright (c) 2014-2015 Frédéric Guillot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Plugin.php 0 → 100644 +15 −0 Original line number Original line Diff line number Diff line <?php namespace Plugin\Theme; use Core\PluginBase; class Plugin extends PluginBase { public function initialize() { $this->template->hook->attach('layout:head', 'theme:layout/head'); $this->template->hook->attach('layout:top', 'theme:layout/top'); $this->template->setTemplateOverride('header', 'theme:layout/header'); } }
README.md 0 → 100644 +16 −0 Original line number Original line Diff line number Diff line Example of theme plugin ======================= This plugin override core templates and use template hooks to create a custom theme. - New CSS styles are added with the hook **layout:head** - A top bar is added to the layout by using the hook **layout:top** - The header template is replaced by a new one with a template override Installation ------------ - Create a directory **Theme** under the folder **plugins** - Copy all source files in this new directory - Go on your local installation of Kanboard - After the login, you should see the alterations to the default layout
Template/layout/head.php 0 → 100644 +14 −0 Original line number Original line Diff line number Diff line <style> #top-bar { background: #666; color: #fff; text-align: center; line-height: 30px; } header nav { color: red; font-weight: bold; } </style> No newline at end of file
Template/layout/header.php 0 → 100644 +6 −0 Original line number Original line Diff line number Diff line <header> <nav> <?= $this->e($title) ?> </nav> </header> No newline at end of file