Changeset 1523383
- Timestamp:
- 10/27/2016 08:11:40 PM (9 years ago)
- Location:
- pl-platform/trunk
- Files:
-
- 16 edited
-
engine/lib/functions.php (modified) (3 diffs)
-
engine/sections/menus/style.css (modified) (1 diff)
-
engine/ui/css/admin.css (modified) (1 diff)
-
engine/ui/css/components.css (modified) (1 diff)
-
engine/ui/css/workarea.css (modified) (1 diff)
-
engine/ui/js/admin.js (modified) (1 diff)
-
engine/ui/js/common.js (modified) (1 diff)
-
engine/ui/js/editing.js (modified) (1 diff)
-
engine/ui/js/site.js (modified) (1 diff)
-
engine/ui/js/utils.js (modified) (1 diff)
-
engine/ui/plugins/codemirror/pl.codemirror.js (modified) (1 diff)
-
engine/ui/plugins/squire/squire.js (modified) (1 diff)
-
engine/ui/plugins/wizard/wizard.js (modified) (1 diff)
-
engine/ui/plugins/wp/colorpicker-wp.js (modified) (1 diff)
-
pl-platform.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pl-platform/trunk/engine/lib/functions.php
r1523345 r1523383 2935 2935 * @return mixed|void - if $echo is false, returns $searchform 2936 2936 */ 2937 function pl_searchform( $echo = true, $class = 'pl-search-form', $pt = false ) {2937 function pl_searchform( $echo = true, $class = 'pl-search-form', $pt = false, $placeholder = false ) { 2938 2938 2939 2939 /** Prevent admin bar on editing */ … … 2941 2941 $edit = ( pl_is_workarea_iframe() ) ? '<input type="hidden" name="iframe" value="1"/>' : ''; 2942 2942 2943 if( ! $placeholder ) { 2944 $placeholder = __( 'Search', 'pl-platform' ); 2945 } 2946 2943 2947 $post_type = ( $pt ) ? sprintf( '<input type="hidden" name="post_type" value="%s"/>', $pt ) : ''; 2944 2948 2945 $searchfield = sprintf( '<span class="btn-search"><i class="pl-icon pl-icon-search"></i></span><input type="text" value="" name="s" class="search-field" placeholder="%s" />', __( 'Search', 'pl-platform' ));2949 $searchfield = sprintf( '<span class="btn-search"><i class="pl-icon pl-icon-search"></i></span><input type="text" value="" name="s" class="search-field" placeholder="%s" />', $placeholder ); 2946 2950 2947 2951 $searchform = sprintf( … … 3010 3014 endif; 3011 3015 3012 echo apply_filters( 'pl_pagination', ob_get_clean() ); 3016 echo apply_filters( 'pl_pagination', ob_get_clean() ); 3013 3017 } 3014 3018 -
pl-platform/trunk/engine/sections/menus/style.css
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/admin.css
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/components.css
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/workarea.css
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/admin.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/common.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/editing.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/site.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/utils.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:381 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/codemirror/pl.codemirror.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:391 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/squire/squire.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:391 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/wizard/wizard.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:391 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/wp/colorpicker-wp.js
r1523345 r1523383 1 /* PageLines Platform - 5.0.16 02 * Built: Thursday, October 27th, 2016, 19:391 /* PageLines Platform - 5.0.161 2 * Built: Thursday, October 27th, 2016, 21:05 3 3 * https://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/pl-platform.php
r1523345 r1523383 4 4 Description: An insanely-fast real time design platform for WordPress. 5 5 6 Version: 5.0.16 06 Version: 5.0.161 7 7 8 8 Author: PageLines -
pl-platform/trunk/readme.txt
r1523345 r1523383 3 3 Contributors: pagelines 4 4 Tested up to: 4.7 5 Stable tag: 5.0.16 05 Stable tag: 5.0.161 6 6 License: GPLv3 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 79 79 80 80 == Changelog == 81 82 = 5.0.161 = 83 84 * New arg added to pl_searchform() you can now change placeholder text. 81 85 82 86 = 5.0.160 =
Note: See TracChangeset
for help on using the changeset viewer.