Changeset 2108285
- Timestamp:
- 06/18/2019 05:13:50 PM (7 years ago)
- Location:
- enigma-buttons
- Files:
-
- 2 edited
-
tags/1.1.3/enigma-buttons.php (modified) (4 diffs)
-
trunk/enigma-buttons.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
enigma-buttons/tags/1.1.3/enigma-buttons.php
r2108283 r2108285 4 4 * Plugin URI: http://e.nigma.de/portfolio/enigma-buttons 5 5 * Description: Brings beautiful buttons to your WordPress installation. 6 * Version: 1.1. 26 * Version: 1.1.3 7 7 * Author: Alexander Lüken 8 8 * Author URI: http://e.nigma.de … … 88 88 return $args['label']; 89 89 } 90 90 91 91 private static function get_icon($args) { 92 92 if ( ! isset($args['icon']) ) … … 98 98 private static function get_size($args) { 99 99 $sizes = array( 'small', 'medium', 'large' ); 100 100 101 101 if ( ! isset($args['size']) || ! in_array($args['size'], $sizes) ) 102 102 return 'medium'; … … 105 105 } 106 106 } 107 -
enigma-buttons/trunk/enigma-buttons.php
r1639238 r2108285 4 4 * Plugin URI: http://e.nigma.de/portfolio/enigma-buttons 5 5 * Description: Brings beautiful buttons to your WordPress installation. 6 * Version: 1.1. 26 * Version: 1.1.3 7 7 * Author: Alexander Lüken 8 8 * Author URI: http://e.nigma.de … … 88 88 return $args['label']; 89 89 } 90 90 91 91 private static function get_icon($args) { 92 92 if ( ! isset($args['icon']) ) … … 98 98 private static function get_size($args) { 99 99 $sizes = array( 'small', 'medium', 'large' ); 100 100 101 101 if ( ! isset($args['size']) || ! in_array($args['size'], $sizes) ) 102 102 return 'medium'; … … 105 105 } 106 106 } 107
Note: See TracChangeset
for help on using the changeset viewer.