Changeset 2217590
- Timestamp:
- 12/24/2019 03:23:34 PM (6 years ago)
- Location:
- let-it-rain/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
let_it_rain.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
let-it-rain/trunk/README.txt
r2217569 r2217590 9 9 Contributors: monarchofsouls 10 10 11 This Plugin lets you choose an HTML-Encoded Entity that will rain down on your Website.11 This Plugin lets you choose an EMOJI or HTML-Encoded Entity that will rain down on your Website. 12 12 13 13 == Description == … … 26 26 == Screenshots == 27 27 28 1. /assets/screenshot.png28 1. Simple Example of a Money Emoji raining down 29 29 30 30 == Changelog == -
let-it-rain/trunk/let_it_rain.php
r2217569 r2217590 57 57 58 58 public function setup_sections() { 59 add_settings_section( 'our_first_section', ' My First Section Title', array( $this, 'section_callback' ), 'smashing_fields' );59 add_settings_section( 'our_first_section', 'Emoji Selection', array( $this, 'section_callback' ), 'smashing_fields' ); 60 60 } 61 61 … … 63 63 switch( $arguments['id'] ){ 64 64 case 'our_first_section': 65 echo ' This is the first description here!';65 echo 'Here you can select your wanted Emoji to be displayed!'; 66 66 break; 67 67 } … … 72 72 array( 73 73 'uid' => 'our_first_field', 74 'label' => ' Awesome Date',74 'label' => 'Emoji Selection', 75 75 'section' => 'our_first_section', 76 76 'type' => 'text',
Note: See TracChangeset
for help on using the changeset viewer.