Changeset 3111958
- Timestamp:
- 07/03/2024 09:46:06 PM (21 months ago)
- Location:
- event-agent/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/js/events-vue.js (modified) (4 diffs)
-
admin/partials/events.php (modified) (1 diff)
-
event-agent.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
event-agent/trunk/README.txt
r3083492 r3111958 8 8 Requires PHP: 8.0 9 9 Requires at least: 6.0 10 Tested up to: 6. 411 Stable tag: 4.6. 712 Version: 4.6. 710 Tested up to: 6.6 11 Stable tag: 4.6.8 12 Version: 4.6.8 13 13 License: GPLv2 or later 14 14 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
event-agent/trunk/admin/js/events-vue.js
r3035307 r3111958 36 36 } 37 37 }, 38 calendarTimeZone: ' local',38 calendarTimeZone: '', 39 39 editor: ClassicEditor, 40 40 editorConfig: { … … 163 163 eventPage: null, 164 164 oldBackgroundId: 0, 165 oldImageId: 0 165 oldImageId: 0, 166 timezones: '' 166 167 }, 167 168 … … 712 713 this.hasStripe = response.data.hasStripe; 713 714 this.eventPage = response.data.eventPage; 715 this.calendarTimeZone = response.data.timezoneId; 716 this.timezones = response.data.timezones; 714 717 this.loading = false; 715 718 this.pendingConfiguration = !this.hasCheckInPage || !this.hasRegistrationPage || … … 1223 1226 duration: 3600000, 1224 1227 priceTiers: [], 1225 hybridVenueId: null 1228 hybridVenueId: null, 1229 timeZone: this.calendarTimeZone 1226 1230 }; 1227 1231 this.event.registrationStartDate = this.event.startDate; -
event-agent/trunk/admin/partials/events.php
r3032376 r3111958 274 274 content="<?php esc_html_e('The time zone of this event.', 'event-agent'); ?>"></ea-label-help> 275 275 <el-select v-model="event.timeZone" placeholder="<?php esc_html_e('Time Zone', 'event-agent'); ?>" filterable @change="handleTzChange"> 276 <el-option v-for="timezone in event.timezones" :key="timezone" :label="timezone" :value="timezone"></el-option>276 <el-option v-for="timezone in timezones" :key="timezone" :label="timezone" :value="timezone"></el-option> 277 277 </el-select> 278 278 </el-form-item> -
event-agent/trunk/event-agent.php
r3083492 r3111958 11 11 * Plugin URI: https://www.eventagent.ai/ 12 12 * Description: EventAgent.ai combines a next generation event management system with AI-powered marketing to maximize your sales. AI makes all the difference. 13 * Version: 4.6. 713 * Version: 4.6.8 14 14 * Requires at least: 6.0 15 15 * Requires PHP: 8.0 … … 25 25 } 26 26 27 define( 'EVENT_AGENT_VERSION', '4.6. 7' );27 define( 'EVENT_AGENT_VERSION', '4.6.8' ); 28 28 29 29 require_once dirname(__FILE__).'/includes/activate.php';
Note: See TracChangeset
for help on using the changeset viewer.