Changeset 1724033
- Timestamp:
- 09/03/2017 11:32:16 PM (9 years ago)
- Location:
- css-injector/trunk
- Files:
-
- 12 edited
-
_core/1.0.0L/admin_page.php (modified) (2 diffs)
-
_plugin/index.php (modified) (4 diffs)
-
_plugin/tabs/admin_area.index.php (modified) (2 diffs)
-
_plugin/tabs/login_page.index.php (modified) (2 diffs)
-
_plugin/tabs/lost_password_page.index.php (modified) (2 diffs)
-
_plugin/tabs/registration_page.index.php (modified) (3 diffs)
-
_plugin/tabs/site_area.index.php (modified) (2 diffs)
-
activate.php (modified) (2 diffs)
-
deactivate.php (modified) (2 diffs)
-
index.php (modified) (3 diffs)
-
readme.txt (modified) (6 diffs)
-
uninstall.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
css-injector/trunk/_core/1.0.0L/admin_page.php
r1721819 r1724033 48 48 else{ 49 49 50 Redirects::Redirect('?page='.$_GET['page']);50 $_core -> Call('Redirects', 'Redirect', array('?page='.$_GET['page'])); 51 51 exit; 52 52 } … … 65 65 else{ 66 66 67 Redirects::Redirect('?page='.$_GET['page'].'&tab='.$active_tab_id);67 $_core -> Call('Redirects', 'Redirect', array('?page='.$_GET['page'].'&tab='.$active_tab_id)); 68 68 exit; 69 69 } -
css-injector/trunk/_plugin/index.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 … … 79 79 $_core -> Call('Actions', 'Add', array($hook_id, function () use ($_core, $head_code_safe, $section_prefix){ 80 80 81 echo "\r\n".'<!-- C SS Injector - Head ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";81 echo "\r\n".'<!-- Custom CSS Injector - Head ('.ucfirst($section_prefix).') BEGIN -->'."\r\n"; 82 82 echo '<style>'; 83 83 echo "\r\n".stripslashes($head_code_safe)."\r\n"; 84 84 echo '</style>'; 85 echo "\r\n".'<!-- C SS Injector - Head ('.ucfirst($section_prefix).') END -->'."\r\n";85 echo "\r\n".'<!-- Custom CSS Injector - Head ('.ucfirst($section_prefix).') END -->'."\r\n"; 86 86 })); 87 87 } … … 114 114 $_core -> Call('Actions', 'Add', array($hook_id, function () use ($_core, $foot_code_safe, $section_prefix){ 115 115 116 echo "\r\n".'<!-- C SS Injector - Foot ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";116 echo "\r\n".'<!-- Custom CSS Injector - Foot ('.ucfirst($section_prefix).') BEGIN -->'."\r\n"; 117 117 echo '<style>'; 118 118 echo "\r\n".stripslashes($foot_code_safe)."\r\n"; 119 119 echo '</style>'; 120 echo "\r\n".'<!-- C SS Injector - Foot ('.ucfirst($section_prefix).') END -->'."\r\n";120 echo "\r\n".'<!-- Custom CSS Injector - Foot ('.ucfirst($section_prefix).') END -->'."\r\n"; 121 121 })); 122 122 } -
css-injector/trunk/_plugin/tabs/admin_area.index.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/_plugin/tabs/login_page.index.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/_plugin/tabs/lost_password_page.index.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/_plugin/tabs/registration_page.index.php
r1721819 r1724033 1 1 <?php 2 2 /** 3 * regist er_page.index.php3 * registration_page.index.php 4 4 * 5 * @file ./_plugin/tabs/regist er_page.index.php5 * @file ./_plugin/tabs/registration_page.index.php 6 6 * @package 77solutions.CSSInjector 7 7 * @author 77 Solutions, Matthew Lukas Mania … … 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/_plugin/tabs/site_area.index.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/activate.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/deactivate.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26 -
css-injector/trunk/index.php
r1721819 r1724033 2 2 /* 3 3 Plugin ID: css_injector 4 Plugin Name: C SS Injector4 Plugin Name: Custom CSS Injector 5 5 Plugin Short Name: CSS Injector 6 6 Description: Super simple solution to add, edit and control custom CSS code in selected areas of Your WordPress website. 7 7 Icon: code 8 8 Plugin URI: https://wordpress.org/plugins/css-injector/ 9 Version: 1.0. 09 Version: 1.0.1 10 10 Version Type: Free 11 11 Author: 77 Solutions … … 24 24 */ 25 25 /* 26 This file is part of C SS Injector.26 This file is part of Custom CSS Injector. 27 27 28 C SS Injector is free software: you can redistribute it and/or modify28 Custom CSS Injector is free software: you can redistribute it and/or modify 29 29 it under the terms of the GNU General Public License as published by 30 30 the Free Software Foundation; either version 3 of the License, or 31 31 (at your option) any later version. 32 32 33 C SS Injector is distributed in the hope that it will be useful,33 Custom CSS Injector is distributed in the hope that it will be useful, 34 34 but WITHOUT ANY WARRANTY; without even the implied warranty of 35 35 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 37 37 38 38 You should have received a copy of the GNU General Public License 39 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.39 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 40 40 */ 41 41 -
css-injector/trunk/readme.txt
r1723577 r1724033 1 === C SS Injector ===1 === Custom CSS Injector === 2 2 Contributors: 77solutions 3 3 Donate link: https://donorbox.org/css-injector … … 5 5 Requires at least: 3.1 6 6 Tested up to: 4.8.1 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.txt … … 20 20 * Simple but useful solution that just works. 21 21 * Mobile optimized interface - add Your custom CSS from mobile device. 22 * C SS Injector works on old and new WordPress versions.22 * Custom CSS Injector works on old and new WordPress versions. 23 23 * No technical skills required. 24 24 * Extremely easy to manage Your custom CSS code. … … 40 40 == FAQ == 41 41 = Installation = 42 1. Upload C SS Injector plugin and activate. That's all!42 1. Upload Custom CSS Injector plugin and activate. That's all! 43 43 44 44 = First Time Usage = … … 49 49 5. Save changes - not forget about this step. Custom CSS will be updated immediately after You save changes. 50 50 51 = Can I use C SS Injector for multisite WP installs? =52 Yes, C SS Injector is working on multisite pages, but is not dedicated for it.51 = Can I use Custom CSS Injector for multisite WP installs? = 52 Yes, Custom CSS Injector is working on multisite pages, but is not dedicated for it. 53 53 54 54 = I like this plugin, how I can help to support Your job? = … … 61 61 62 62 == Changelog == 63 = 1.0.1 = 64 * Full name of plugin was modified. 65 * Small redirections bug was fixed. 63 66 = 1.0.0 = 64 67 * First version released. -
css-injector/trunk/uninstall.php
r1721819 r1724033 10 10 */ 11 11 /* 12 This file is part of C SS Injector.12 This file is part of Custom CSS Injector. 13 13 14 C SS Injector is free software: you can redistribute it and/or modify14 Custom CSS Injector is free software: you can redistribute it and/or modify 15 15 it under the terms of the GNU General Public License as published by 16 16 the Free Software Foundation; either version 3 of the License, or any later version. 17 17 18 C SS Injector is distributed in the hope that it will be useful,18 Custom CSS Injector is distributed in the hope that it will be useful, 19 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 22 22 23 23 You should have received a copy of the GNU General Public License 24 along with C SS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.24 along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt. 25 25 */ 26 26
Note: See TracChangeset
for help on using the changeset viewer.