Changeset 1958991
- Timestamp:
- 10/19/2018 08:17:25 AM (7 years ago)
- Location:
- wp-backpack/trunk
- Files:
-
- 2 added
- 4 edited
-
functions/werkzeugleiste (added)
-
functions/werkzeugleiste/werkzeugleiste.php (added)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-backpack-functions.php (modified) (2 diffs)
-
wp-backpack-optik.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-backpack/trunk/main.php
r1880887 r1958991 5 5 Plugin URI: https://christophkleinschmidt.de/wordpress-plugin-wp-backpack/ 6 6 Description: Eine Sammlung von wichtigen Optionen und Funktionen. 7 Version: 2.0.9. 47 Version: 2.0.9.5 8 8 Author: Christoph Kleinschmidt 9 9 Author URI: https://www.christophkleinschmidt.de … … 40 40 41 41 if (! defined('WP_Backpack_Version')) 42 define('WP_Backpack_Version', '2.0.9. 4');42 define('WP_Backpack_Version', '2.0.9.5'); 43 43 44 44 # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -
wp-backpack/trunk/readme.txt
r1880887 r1958991 4 4 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=73ELPUXAJ9RML 5 5 Requires at least: 1.0 6 Tested up to: 4.9. 67 Stable tag: 2.0.9. 46 Tested up to: 4.9.8 7 Stable tag: 2.0.9.5 8 8 License: GPL2 or later 9 9 License URI: http://www.gnu.de/documents/gpl-2.0.de.html … … 14 14 Das 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. 15 15 16 = AuszugWP Backpack Funktionen und Optionen: =16 = Ein kleiner Auszug der WP Backpack Funktionen und Optionen: = 17 17 * einfache Installation des Plugins 18 18 * alle Optionen und Funktionen übersichtlich konfigurierbar -
wp-backpack/trunk/wp-backpack-functions.php
r1880887 r1958991 7 7 function wp_backpack_register_settings() { 8 8 register_setting( 'wp_backpack_group1', 'wp_backpack_umbenennen'); 9 register_setting( 'wp_backpack_group1', 'wp_backpack_werkzeugleiste'); 9 10 register_setting( 'wp_backpack_group1', 'wp_backpack_favicon_backend'); 10 11 register_setting( 'wp_backpack_group1', 'wp_backpack_favicon_frontend'); … … 80 81 81 82 # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 83 # Werkzeugleiste für alle Nutzer ausblenden 84 # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 85 86 if (get_option('wp_backpack_werkzeugleiste') == 1){ 87 require_once dirname( __FILE__ ) .'/functions/werkzeugleiste/werkzeugleiste.php'; 88 } 89 90 # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 82 91 # Favicon im Backend anzeigen 83 92 # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -
wp-backpack/trunk/wp-backpack-optik.php
r1830877 r1958991 248 248 </td> 249 249 </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> 250 259 </table> 251 260 <p class="submit">
Note: See TracChangeset
for help on using the changeset viewer.