Changeset 2288662
- Timestamp:
- 04/21/2020 06:19:19 PM (6 years ago)
- Location:
- blank-slate
- Files:
-
- 4 added
- 8 edited
- 1 copied
-
tags/1.1.5 (copied) (copied from blank-slate/trunk)
-
tags/1.1.5/blank-slate.php (modified) (1 diff)
-
tags/1.1.5/functions.php (modified) (2 diffs)
-
tags/1.1.5/languages/blank-slate.pot (modified) (1 diff)
-
tags/1.1.5/pages (added)
-
tags/1.1.5/pages/admin.php (added)
-
tags/1.1.5/readme.txt (modified) (3 diffs)
-
trunk/blank-slate.php (modified) (1 diff)
-
trunk/functions.php (modified) (2 diffs)
-
trunk/languages/blank-slate.pot (modified) (1 diff)
-
trunk/pages (added)
-
trunk/pages/admin.php (added)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blank-slate/tags/1.1.5/blank-slate.php
r1993028 r2288662 1 1 <?php 2 3 2 /** 4 3 * Plugin Name: Blank Slate 5 * Plugin URI: http://aaronreimann.com/wordpress6 * Version: 1.1.47 * Description: This plugin creates a page template giving you a blank page so “the_content()” of the page is all that is displayed, no header, no footer.4 * Description: Provides a blank page template for use with WordPress page builders. 5 * Plugin URI: https://wpblankslate.com/ 6 * Version: 1.1.5 8 7 * Author: Aaron Reimann 9 * Author URI: http://aaronreimann.com/wordpress 8 * Author URI: https://aaronreimann.com/ 9 * Requires at least: 4.7 10 * Requires PHP: 5.3 11 * Text Domain: blank-slate 12 * Domain Path: languages 10 13 * License: GPL2 11 14 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 * Text Domain: blank-slate 13 * Domain Path: /languages 15 * 16 * Copyright 2019-2020 by Aaron Reimann & Micah Wood - All rights reserved. 17 * 18 * @package BlankSlate 14 19 */ 15 20 -
blank-slate/tags/1.1.5/functions.php
r1993028 r2288662 88 88 * Register a new template. 89 89 * 90 * @param string $file Template file/path90 * @param string $file Template file/path 91 91 * @param string $label Label for the template 92 92 */ … … 102 102 } 103 103 } 104 105 if ( ! function_exists( 'blank_slate_register_admin_page' ) ) { 106 107 /** 108 * Register the admin page. 109 */ 110 function blank_slate_register_admin_page() { 111 add_menu_page( 112 esc_html__( 'Blank Slate', 'blank-slate' ), 113 esc_html__( 'Blank Slate', 'blank-slate' ), 114 'edit_posts', 115 'blank-slate', 116 function () { 117 require __DIR__ . '/pages/admin.php'; 118 }, 119 'dashicons-media-default' 120 ); 121 } 122 } -
blank-slate/tags/1.1.5/languages/blank-slate.pot
r1993028 r2288662 1 #, fuzzy 1 # Copyright (C) 2020 Aaron Reimann 2 # This file is distributed under the GPL2. 2 3 msgid "" 3 4 msgstr "" 4 "Project-Id-Version: Blank Slate\n" 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2018-12-12 16:59+0000\n" 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 5 "Project-Id-Version: Blank Slate 1.1.4\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blank-slate\n" 7 "POT-Creation-Date: 2020-04-21 14:16:48+00:00\n" 8 "MIME-Version: 1.0\n" 9 "Content-Type: text/plain; charset=utf-8\n" 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n" 8 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 9 "Language-Team: \n" 10 "Language: \n" 11 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 12 "MIME-Version: 1.0\n" 13 "Content-Type: text/plain; charset=UTF-8\n" 14 "Content-Transfer-Encoding: 8bit\n" 15 "X-Generator: Loco https://localise.biz/\n" 16 "X-Loco-Version: 2.2.0; wp-5.0" 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 "X-Generator: node-wp-i18n 1.2.3\n" 17 15 18 #. Author of the plugin 16 #. Plugin Name of the plugin/theme 17 msgid "Blank Slate" 18 msgstr "" 19 20 #: pages/admin.php:2 21 msgid "Hello World!" 22 msgstr "" 23 24 #. Plugin URI of the plugin/theme 25 msgid "https://wpblankslate.com/" 26 msgstr "" 27 28 #. Description of the plugin/theme 29 msgid "Provides a blank page template for use with WordPress page builders." 30 msgstr "" 31 32 #. Author of the plugin/theme 19 33 msgid "Aaron Reimann" 20 34 msgstr "" 21 35 22 #. Name of the plugin 23 #: functions.php:13 24 msgid "Blank Slate" 36 #. Author URI of the plugin/theme 37 msgid "https://aaronreimann.com/" 25 38 msgstr "" 26 27 #. URI of the plugin28 #. Author URI of the plugin29 msgid "http://aaronreimann.com/wordpress"30 msgstr ""31 32 #. Description of the plugin33 msgid ""34 "This plugin creates a page template giving you a blank page so “the_content()"35 "” of the page is all that is displayed, no header, no footer."36 msgstr "" -
blank-slate/tags/1.1.5/readme.txt
r1993028 r2288662 1 1 === Blank Slate === 2 Contributors: areimann, wpscholar , woodent3 Donate link: http ://aaronreimann.com/wordpress2 Contributors: areimann, wpscholar 3 Donate link: https://www.paypal.me/wpdonate 4 4 Tags: blank, empty, canvas, landing, page builder 5 5 Requires at least: 4.7 6 6 Requires PHP: 5.3 7 Tested up to: 5. 08 Stable tag: 1.1. 47 Tested up to: 5.4 8 Stable tag: 1.1.5 9 9 10 This plugin creates a page template giving you a blank page so “the_content()” of the page is all that is displayed, no header, no footer.10 Provides a blank page template for use with WordPress page builders. 11 11 12 12 == Description == … … 29 29 == Other Notes == 30 30 31 This plugin will load everything that is normally included in the wp_head() and wp_footer(), so all scripts should load as normal.31 This plugin will load everything that is normally included in the wp_head() and wp_footer(), so all scripts and styles should load as normal. 32 32 33 33 == Upgrade Notice == 34 35 = 1.1.5 = 36 * Minor code updates. Compatible with WordPress 5.4. 34 37 35 38 = 1.1.4 = … … 40 43 41 44 == Changelog == 45 46 = 1.1.5 = 47 * Updated code to meet coding standards. 42 48 43 49 = 1.1.4 = -
blank-slate/trunk/blank-slate.php
r1993028 r2288662 1 1 <?php 2 3 2 /** 4 3 * Plugin Name: Blank Slate 5 * Plugin URI: http://aaronreimann.com/wordpress6 * Version: 1.1.47 * Description: This plugin creates a page template giving you a blank page so “the_content()” of the page is all that is displayed, no header, no footer.4 * Description: Provides a blank page template for use with WordPress page builders. 5 * Plugin URI: https://wpblankslate.com/ 6 * Version: 1.1.5 8 7 * Author: Aaron Reimann 9 * Author URI: http://aaronreimann.com/wordpress 8 * Author URI: https://aaronreimann.com/ 9 * Requires at least: 4.7 10 * Requires PHP: 5.3 11 * Text Domain: blank-slate 12 * Domain Path: languages 10 13 * License: GPL2 11 14 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 * Text Domain: blank-slate 13 * Domain Path: /languages 15 * 16 * Copyright 2019-2020 by Aaron Reimann & Micah Wood - All rights reserved. 17 * 18 * @package BlankSlate 14 19 */ 15 20 -
blank-slate/trunk/functions.php
r1993028 r2288662 88 88 * Register a new template. 89 89 * 90 * @param string $file Template file/path90 * @param string $file Template file/path 91 91 * @param string $label Label for the template 92 92 */ … … 102 102 } 103 103 } 104 105 if ( ! function_exists( 'blank_slate_register_admin_page' ) ) { 106 107 /** 108 * Register the admin page. 109 */ 110 function blank_slate_register_admin_page() { 111 add_menu_page( 112 esc_html__( 'Blank Slate', 'blank-slate' ), 113 esc_html__( 'Blank Slate', 'blank-slate' ), 114 'edit_posts', 115 'blank-slate', 116 function () { 117 require __DIR__ . '/pages/admin.php'; 118 }, 119 'dashicons-media-default' 120 ); 121 } 122 } -
blank-slate/trunk/languages/blank-slate.pot
r1993028 r2288662 1 #, fuzzy 1 # Copyright (C) 2020 Aaron Reimann 2 # This file is distributed under the GPL2. 2 3 msgid "" 3 4 msgstr "" 4 "Project-Id-Version: Blank Slate\n" 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2018-12-12 16:59+0000\n" 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 5 "Project-Id-Version: Blank Slate 1.1.4\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blank-slate\n" 7 "POT-Creation-Date: 2020-04-21 14:16:48+00:00\n" 8 "MIME-Version: 1.0\n" 9 "Content-Type: text/plain; charset=utf-8\n" 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n" 8 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 9 "Language-Team: \n" 10 "Language: \n" 11 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 12 "MIME-Version: 1.0\n" 13 "Content-Type: text/plain; charset=UTF-8\n" 14 "Content-Transfer-Encoding: 8bit\n" 15 "X-Generator: Loco https://localise.biz/\n" 16 "X-Loco-Version: 2.2.0; wp-5.0" 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 "X-Generator: node-wp-i18n 1.2.3\n" 17 15 18 #. Author of the plugin 16 #. Plugin Name of the plugin/theme 17 msgid "Blank Slate" 18 msgstr "" 19 20 #: pages/admin.php:2 21 msgid "Hello World!" 22 msgstr "" 23 24 #. Plugin URI of the plugin/theme 25 msgid "https://wpblankslate.com/" 26 msgstr "" 27 28 #. Description of the plugin/theme 29 msgid "Provides a blank page template for use with WordPress page builders." 30 msgstr "" 31 32 #. Author of the plugin/theme 19 33 msgid "Aaron Reimann" 20 34 msgstr "" 21 35 22 #. Name of the plugin 23 #: functions.php:13 24 msgid "Blank Slate" 36 #. Author URI of the plugin/theme 37 msgid "https://aaronreimann.com/" 25 38 msgstr "" 26 27 #. URI of the plugin28 #. Author URI of the plugin29 msgid "http://aaronreimann.com/wordpress"30 msgstr ""31 32 #. Description of the plugin33 msgid ""34 "This plugin creates a page template giving you a blank page so “the_content()"35 "” of the page is all that is displayed, no header, no footer."36 msgstr "" -
blank-slate/trunk/readme.txt
r1993028 r2288662 1 1 === Blank Slate === 2 Contributors: areimann, wpscholar , woodent3 Donate link: http ://aaronreimann.com/wordpress2 Contributors: areimann, wpscholar 3 Donate link: https://www.paypal.me/wpdonate 4 4 Tags: blank, empty, canvas, landing, page builder 5 5 Requires at least: 4.7 6 6 Requires PHP: 5.3 7 Tested up to: 5. 08 Stable tag: 1.1. 47 Tested up to: 5.4 8 Stable tag: 1.1.5 9 9 10 This plugin creates a page template giving you a blank page so “the_content()” of the page is all that is displayed, no header, no footer.10 Provides a blank page template for use with WordPress page builders. 11 11 12 12 == Description == … … 29 29 == Other Notes == 30 30 31 This plugin will load everything that is normally included in the wp_head() and wp_footer(), so all scripts should load as normal.31 This plugin will load everything that is normally included in the wp_head() and wp_footer(), so all scripts and styles should load as normal. 32 32 33 33 == Upgrade Notice == 34 35 = 1.1.5 = 36 * Minor code updates. Compatible with WordPress 5.4. 34 37 35 38 = 1.1.4 = … … 40 43 41 44 == Changelog == 45 46 = 1.1.5 = 47 * Updated code to meet coding standards. 42 48 43 49 = 1.1.4 =
Note: See TracChangeset
for help on using the changeset viewer.