Plugin Directory

Changeset 1724033


Ignore:
Timestamp:
09/03/2017 11:32:16 PM (9 years ago)
Author:
77solutions
Message:

Version 1.0.1 released.

Location:
css-injector/trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • css-injector/trunk/_core/1.0.0L/admin_page.php

    r1721819 r1724033  
    4848        else{
    4949           
    50             Redirects::Redirect('?page='.$_GET['page']);
     50            $_core -> Call('Redirects', 'Redirect', array('?page='.$_GET['page']));
    5151            exit;
    5252        }
     
    6565        else{
    6666           
    67             Redirects::Redirect('?page='.$_GET['page'].'&tab='.$active_tab_id);
     67            $_core -> Call('Redirects', 'Redirect', array('?page='.$_GET['page'].'&tab='.$active_tab_id));
    6868            exit;
    6969        }
  • css-injector/trunk/_plugin/index.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
     
    7979                $_core -> Call('Actions', 'Add', array($hook_id, function () use ($_core, $head_code_safe, $section_prefix){
    8080                   
    81                     echo "\r\n".'<!-- CSS Injector - Head ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";
     81                    echo "\r\n".'<!-- Custom CSS Injector - Head ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";
    8282                    echo '<style>';
    8383                    echo "\r\n".stripslashes($head_code_safe)."\r\n";
    8484                    echo '</style>';
    85                     echo "\r\n".'<!-- CSS Injector - Head ('.ucfirst($section_prefix).') END -->'."\r\n";
     85                    echo "\r\n".'<!-- Custom CSS Injector - Head ('.ucfirst($section_prefix).') END -->'."\r\n";
    8686                }));
    8787            }
     
    114114                $_core -> Call('Actions', 'Add', array($hook_id, function () use ($_core, $foot_code_safe, $section_prefix){
    115115                   
    116                     echo "\r\n".'<!-- CSS Injector - Foot ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";
     116                    echo "\r\n".'<!-- Custom CSS Injector - Foot ('.ucfirst($section_prefix).') BEGIN -->'."\r\n";
    117117                    echo '<style>';
    118118                    echo "\r\n".stripslashes($foot_code_safe)."\r\n";
    119119                    echo '</style>';
    120                     echo "\r\n".'<!-- CSS Injector - Foot ('.ucfirst($section_prefix).') END -->'."\r\n";
     120                    echo "\r\n".'<!-- Custom CSS Injector - Foot ('.ucfirst($section_prefix).') END -->'."\r\n";
    121121                }));
    122122            }
  • css-injector/trunk/_plugin/tabs/admin_area.index.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/_plugin/tabs/login_page.index.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/_plugin/tabs/lost_password_page.index.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/_plugin/tabs/registration_page.index.php

    r1721819 r1724033  
    11<?php
    22/**
    3  * register_page.index.php
     3 * registration_page.index.php
    44 *
    5  * @file ./_plugin/tabs/register_page.index.php
     5 * @file ./_plugin/tabs/registration_page.index.php
    66 * @package 77solutions.CSSInjector
    77 * @author 77 Solutions, Matthew Lukas Mania
     
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/_plugin/tabs/site_area.index.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/activate.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/deactivate.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
  • css-injector/trunk/index.php

    r1721819 r1724033  
    22/*
    33Plugin ID:              css_injector
    4 Plugin Name:            CSS Injector
     4Plugin Name:            Custom CSS Injector
    55Plugin Short Name:      CSS Injector
    66Description:            Super simple solution to add, edit and control custom CSS code in selected areas of Your WordPress website.
    77Icon:                   code
    88Plugin URI:             https://wordpress.org/plugins/css-injector/
    9 Version:                1.0.0
     9Version:                1.0.1
    1010Version Type:           Free
    1111Author:                 77 Solutions
     
    2424 */
    2525/*
    26 This file is part of CSS Injector.
     26This file is part of Custom CSS Injector.
    2727
    28 CSS Injector is free software: you can redistribute it and/or modify
     28Custom CSS Injector is free software: you can redistribute it and/or modify
    2929it under the terms of the GNU General Public License as published by
    3030the Free Software Foundation; either version 3 of the License, or
    3131(at your option) any later version.
    3232
    33 CSS Injector is distributed in the hope that it will be useful,
     33Custom CSS Injector is distributed in the hope that it will be useful,
    3434but WITHOUT ANY WARRANTY; without even the implied warranty of
    3535MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    3737
    3838You should have received a copy of the GNU General Public License
    39 along with CSS Injector.  If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     39along with Custom CSS Injector.  If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    4040*/
    4141
  • css-injector/trunk/readme.txt

    r1723577 r1724033  
    1 === CSS Injector ===
     1=== Custom CSS Injector ===
    22Contributors: 77solutions
    33Donate link: https://donorbox.org/css-injector
     
    55Requires at least: 3.1
    66Tested up to: 4.8.1
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    2020* Simple but useful solution that just works.
    2121* Mobile optimized interface - add Your custom CSS from mobile device.
    22 * CSS Injector works on old and new WordPress versions.
     22* Custom CSS Injector works on old and new WordPress versions.
    2323* No technical skills required.
    2424* Extremely easy to manage Your custom CSS code.
     
    4040== FAQ ==
    4141= Installation =
    42 1. Upload CSS Injector plugin and activate. That's all!
     421. Upload Custom CSS Injector plugin and activate. That's all!
    4343
    4444= First Time Usage =
     
    49495. Save changes - not forget about this step. Custom CSS will be updated immediately after You save changes.
    5050
    51 = Can I use CSS Injector for multisite WP installs? =
    52 Yes, CSS Injector is working on multisite pages, but is not dedicated for it.
     51= Can I use Custom CSS Injector for multisite WP installs? =
     52Yes, Custom CSS Injector is working on multisite pages, but is not dedicated for it.
    5353
    5454= I like this plugin, how I can help to support Your job? =
     
    6161
    6262== Changelog ==
     63= 1.0.1 =
     64* Full name of plugin was modified.
     65* Small redirections bug was fixed.
    6366= 1.0.0 =
    6467* First version released.
  • css-injector/trunk/uninstall.php

    r1721819 r1724033  
    1010 */
    1111/*
    12 This file is part of CSS Injector.
     12This file is part of Custom CSS Injector.
    1313
    14 CSS Injector is free software: you can redistribute it and/or modify
     14Custom CSS Injector is free software: you can redistribute it and/or modify
    1515it under the terms of the GNU General Public License as published by
    1616the Free Software Foundation; either version 3 of the License, or any later version.
    1717
    18 CSS Injector is distributed in the hope that it will be useful,
     18Custom CSS Injector is distributed in the hope that it will be useful,
    1919but WITHOUT ANY WARRANTY; without even the implied warranty of
    2020MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     
    2222
    2323You should have received a copy of the GNU General Public License
    24 along with CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
     24along with Custom CSS Injector. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
    2525*/
    2626
Note: See TracChangeset for help on using the changeset viewer.