Plugin Directory

Changeset 1958991


Ignore:
Timestamp:
10/19/2018 08:17:25 AM (7 years ago)
Author:
ckerfurt
Message:

2.0.9.5

Location:
wp-backpack/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-backpack/trunk/main.php

    r1880887 r1958991  
    55Plugin URI: https://christophkleinschmidt.de/wordpress-plugin-wp-backpack/
    66Description: Eine Sammlung von wichtigen Optionen und Funktionen.
    7 Version: 2.0.9.4
     7Version: 2.0.9.5
    88Author: Christoph Kleinschmidt
    99Author URI: https://www.christophkleinschmidt.de
     
    4040
    4141if (! defined('WP_Backpack_Version'))
    42     define('WP_Backpack_Version', '2.0.9.4');
     42    define('WP_Backpack_Version', '2.0.9.5');
    4343
    4444# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  • wp-backpack/trunk/readme.txt

    r1880887 r1958991  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=73ELPUXAJ9RML
    55Requires at least: 1.0
    6 Tested up to: 4.9.6
    7 Stable tag: 2.0.9.4
     6Tested up to: 4.9.8
     7Stable tag: 2.0.9.5
    88License: GPL2 or later
    99License URI: http://www.gnu.de/documents/gpl-2.0.de.html
     
    1414Das WordPress Plugin [WP Backpack](https://www.christophkleinschmidt.de/wordpress-plugin-wp-backpack/) ist eine gebündelte Sammlung von wichtigen Optionen und Funktionen. Über Neuigkeiten und aktuelle Updates werden die Nutzer stets informiert.
    1515
    16 = Auszug WP Backpack Funktionen und Optionen: =
     16= Ein kleiner Auszug der WP Backpack Funktionen und Optionen: =
    1717* einfache Installation des Plugins
    1818* alle Optionen und Funktionen übersichtlich konfigurierbar
  • wp-backpack/trunk/wp-backpack-functions.php

    r1880887 r1958991  
    77function wp_backpack_register_settings() {
    88    register_setting( 'wp_backpack_group1', 'wp_backpack_umbenennen');
     9    register_setting( 'wp_backpack_group1', 'wp_backpack_werkzeugleiste');
    910    register_setting( 'wp_backpack_group1', 'wp_backpack_favicon_backend');
    1011    register_setting( 'wp_backpack_group1', 'wp_backpack_favicon_frontend');
     
    8081
    8182# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     83# Werkzeugleiste für alle Nutzer ausblenden
     84# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     85
     86if (get_option('wp_backpack_werkzeugleiste') == 1){
     87    require_once dirname( __FILE__ ) .'/functions/werkzeugleiste/werkzeugleiste.php';
     88}
     89
     90# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    8291# Favicon im Backend anzeigen
    8392# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  • wp-backpack/trunk/wp-backpack-optik.php

    r1830877 r1958991  
    248248                </td>
    249249        </tr>
     250        <tr valign="top">
     251            <th scope="row">
     252                Werkzeugleiste für alle Nutzer ausblenden
     253            </th>
     254                <td>
     255                    <input type="checkbox" name="wp_backpack_werkzeugleiste" value="1" <?php  if(get_option('wp_backpack_werkzeugleiste') == 1) echo 'checked="checked"'; ?>"/>
     256                    <span class="description"><?php _e("WordPress Werkzeugleiste für alle Nutzer ausblenden"); ?></span>
     257                </td>
     258        </tr>
    250259        </table>
    251260    <p class="submit">
Note: See TracChangeset for help on using the changeset viewer.