Changeset 3435424
- Timestamp:
- 01/08/2026 06:35:38 PM (3 months ago)
- Location:
- fetch-meditation/trunk
- Files:
-
- 4 edited
-
build.txt (modified) (1 diff)
-
fetch-meditation.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fetch-meditation/trunk/build.txt
r3435416 r3435424 1 e4a2b7c70c860395cdd726cb07cea82e0dbc603c 1 3fbca10879f94a3d15d3fdc396dca6629a43527a -
fetch-meditation/trunk/fetch-meditation.php
r3435416 r3435424 7 7 * Contributors: pjaudiomv, bmltenabled 8 8 * Author: bmltenabled 9 * Version: 1.4. 59 * Version: 1.4.6 10 10 * Requires PHP: 8.1 11 11 * Requires at least: 6.2 … … 729 729 <div class="wrap"> 730 730 <h2>Fetch Meditation Settings</h2> 731 732 <div class="card" style="max-width: 800px; margin-bottom: 20px;">733 <h3>How to Use</h3>734 <p>Add one of the following shortcodes to your page or post to display the meditation:</p>735 <ul>736 <li><code>[fetch_meditation]</code> - General shortcode (requires book attribute)</li>737 <li><code>[jft]</code> - Displays Just For Today meditation</li>738 <li><code>[spad]</code> - Displays Spiritual Principle A Day meditation</li>739 </ul>740 741 <h4>Available Options:</h4>742 <ul>743 <li><strong>Book:</strong> Choose between JFT, SPAD, or Both (not needed for [jft] and [spad] shortcodes)<br>744 <code>[fetch_meditation book="jft"]</code>, <code>[fetch_meditation book="spad"]</code>, or <code>[fetch_meditation book="both"]</code></li>745 746 <li><strong>Layout:</strong> Choose between table or block layout<br>747 <code>[jft layout="block"]</code> or <code>[spad layout="table"]</code></li>748 749 <li><strong>Theme:</strong> Choose visual appearance (default, jft-style, spad-style)<br>750 <code>[fetch_meditation theme="jft-style"]</code> or <code>[jft theme="default"]</code><br>751 Note: [jft] shortcode defaults to jft-style theme, [spad] shortcode defaults to spad-style theme</li>752 753 <li><strong>Language:</strong><br>754 <strong>JFT:</strong> <?php echo esc_html( implode( ', ', array_keys( static::get_available_languages( 'jft' ) ) ) ); ?><br>755 <strong>SPAD:</strong> <?php echo esc_html( implode( ', ', array_keys( static::get_available_languages( 'spad' ) ) ) ); ?><br>756 <code>[jft language="spanish"]</code> or <code>[spad language="german"]</code></li>757 758 <li><strong>Timezone (English Only):</strong> Set timezone for English language only<br>759 <code>[jft timezone="America/New_York"]</code><br>760 Common timezones: America/New_York, America/Chicago, America/Denver, America/Los_Angeles, Europe/London, etc.</li>761 762 <li><strong>Tabbed Display (book="both" only):</strong><br>763 <code>tabs_layout="tabs"</code> or <code>tabs_layout="accordion"</code> - Controls display style (default: tabs)<br>764 <code>jft_language="english"</code>, <code>spad_language="german"</code> - Set different languages for each book<br>765 <code>jft_timezone="America/New_York"</code>, <code>spad_timezone="America/Chicago"</code> - Set different timezones<br>766 <code>jft_theme="jft-style"</code>, <code>spad_theme="spad-style"</code> - Set different themes for each book</li>767 </ul>768 769 <h4>Examples:</h4>770 <ul>771 <li><code>[jft]</code> - Simple JFT meditation (uses JFT style theme by default)</li>772 <li><code>[spad language="german"]</code> - German SPAD meditation (uses SPAD style theme by default)</li>773 <li><code>[jft layout="block" language="spanish" timezone="Europe/Madrid"]</code> - Spanish JFT with block layout and Madrid timezone</li>774 <li><code>[fetch_meditation book="jft" layout="block" language="english" timezone="America/New_York"]</code> - Using the general shortcode</li>775 <li><code>[jft theme="default"]</code> - JFT meditation with default theme instead of JFT style</li>776 <li><code>[fetch_meditation book="spad" theme="jft-style"]</code> - SPAD meditation with JFT style theme</li>777 <li><code>[fetch_meditation book="both"]</code> - Display both JFT and SPAD in tabbed interface</li>778 <li><code>[fetch_meditation book="both" tabs_layout="accordion"]</code> - Accordion layout (stacked)</li>779 <li><code>[fetch_meditation book="both" jft_language="spanish" spad_language="german"]</code> - Different languages for each book</li>780 </ul>781 </div>782 731 783 732 <form method="post" action="options.php"> … … 926 875 <?php submit_button(); ?> 927 876 </form> 877 <div class="card" style="max-width: 800px; margin-bottom: 20px;"> 878 <h3>How to Use</h3> 879 <p>Add one of the following shortcodes to your page or post to display the meditation:</p> 880 <ul> 881 <li><code>[fetch_meditation]</code> - General shortcode (requires book attribute)</li> 882 <li><code>[jft]</code> - Displays Just For Today meditation</li> 883 <li><code>[spad]</code> - Displays Spiritual Principle A Day meditation</li> 884 </ul> 885 886 <h4>Available Options:</h4> 887 <ul> 888 <li><strong>Book:</strong> Choose between JFT, SPAD, or Both (not needed for [jft] and [spad] shortcodes)<br> 889 <code>[fetch_meditation book="jft"]</code>, <code>[fetch_meditation book="spad"]</code>, or <code>[fetch_meditation book="both"]</code></li> 890 891 <li><strong>Layout:</strong> Choose between table or block layout<br> 892 <code>[jft layout="block"]</code> or <code>[spad layout="table"]</code></li> 893 894 <li><strong>Theme:</strong> Choose visual appearance (default, jft-style, spad-style)<br> 895 <code>[fetch_meditation theme="jft-style"]</code> or <code>[jft theme="default"]</code><br> 896 Note: [jft] shortcode defaults to jft-style theme, [spad] shortcode defaults to spad-style theme</li> 897 898 <li><strong>Language:</strong><br> 899 <strong>JFT:</strong> <?php echo esc_html( implode( ', ', array_keys( static::get_available_languages( 'jft' ) ) ) ); ?><br> 900 <strong>SPAD:</strong> <?php echo esc_html( implode( ', ', array_keys( static::get_available_languages( 'spad' ) ) ) ); ?><br> 901 <code>[jft language="spanish"]</code> or <code>[spad language="german"]</code></li> 902 903 <li><strong>Timezone (English Only):</strong> Set timezone for English language only<br> 904 <code>[jft timezone="America/New_York"]</code><br> 905 Common timezones: America/New_York, America/Chicago, America/Denver, America/Los_Angeles, Europe/London, etc.</li> 906 907 <li><strong>Tabbed Display (book="both" only):</strong><br> 908 <code>tabs_layout="tabs"</code> or <code>tabs_layout="accordion"</code> - Controls display style (default: tabs)<br> 909 <code>jft_language="english"</code>, <code>spad_language="german"</code> - Set different languages for each book<br> 910 <code>jft_timezone="America/New_York"</code>, <code>spad_timezone="America/Chicago"</code> - Set different timezones<br> 911 <code>jft_theme="jft-style"</code>, <code>spad_theme="spad-style"</code> - Set different themes for each book</li> 912 </ul> 913 914 <h4>Examples:</h4> 915 <ul> 916 <li><code>[jft]</code> - Simple JFT meditation (uses JFT style theme by default)</li> 917 <li><code>[spad language="german"]</code> - German SPAD meditation (uses SPAD style theme by default)</li> 918 <li><code>[jft layout="block" language="spanish" timezone="Europe/Madrid"]</code> - Spanish JFT with block layout and Madrid timezone</li> 919 <li><code>[fetch_meditation book="jft" layout="block" language="english" timezone="America/New_York"]</code> - Using the general shortcode</li> 920 <li><code>[jft theme="default"]</code> - JFT meditation with default theme instead of JFT style</li> 921 <li><code>[fetch_meditation book="spad" theme="jft-style"]</code> - SPAD meditation with JFT style theme</li> 922 <li><code>[fetch_meditation book="both"]</code> - Display both JFT and SPAD in tabbed interface</li> 923 <li><code>[fetch_meditation book="both" tabs_layout="accordion"]</code> - Accordion layout (stacked)</li> 924 <li><code>[fetch_meditation book="both" jft_language="spanish" spad_language="german"]</code> - Different languages for each book</li> 925 </ul> 926 </div> 928 927 </div> 929 928 <?php -
fetch-meditation/trunk/readme.txt
r3435416 r3435424 6 6 Requires PHP: 8.1 7 7 Tested up to: 6.9 8 Stable tag: 1.4. 58 Stable tag: 1.4.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 - Basic (horizontal tabs): [fetch_meditation book="both"] 36 36 - Accordion layout: [fetch_meditation book="both" tabs_layout="accordion"] 37 - Different languages: [fetch_meditation book="both" jft_language="spanish" spad_language="german"] 38 - Different timezones: [fetch_meditation book="both" jft_timezone="America/New_York" spad_timezone="America/Chicago"] 39 - Different themes: [fetch_meditation book="both" jft_theme="jft-style" spad_theme="spad-style"] 37 - Tabs layout (default): [fetch_meditation book="both" tabs_layout="tabs"] 40 38 41 39 MORE INFORMATION … … 51 49 52 50 == Changelog == 51 52 = 1.4.6 = 53 54 * Move how to section from settings. 53 55 54 56 = 1.4.5 = -
fetch-meditation/trunk/vendor/composer/installed.php
r3435416 r3435424 2 2 'root' => array( 3 3 'name' => 'bmlt/fetch-meditation-wp', 4 'pretty_version' => '1.4. 5',5 'version' => '1.4. 5.0',6 'reference' => ' e4a2b7c70c860395cdd726cb07cea82e0dbc603c',4 'pretty_version' => '1.4.6', 5 'version' => '1.4.6.0', 6 'reference' => '3fbca10879f94a3d15d3fdc396dca6629a43527a', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'bmlt/fetch-meditation-wp' => array( 23 'pretty_version' => '1.4. 5',24 'version' => '1.4. 5.0',25 'reference' => ' e4a2b7c70c860395cdd726cb07cea82e0dbc603c',23 'pretty_version' => '1.4.6', 24 'version' => '1.4.6.0', 25 'reference' => '3fbca10879f94a3d15d3fdc396dca6629a43527a', 26 26 'type' => 'project', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.