Changeset 3031015
- Timestamp:
- 02/04/2024 03:58:20 AM (2 years ago)
- Location:
- event-agent/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/js/events-vue.js (modified) (2 diffs)
-
admin/partials/events.php (modified) (1 diff)
-
event-agent.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
event-agent/trunk/README.txt
r3027501 r3031015 9 9 Requires at least: 4.6 10 10 Tested up to: 6.4 11 Stable tag: 4. 4.912 Version: 4. 4.911 Stable tag: 4.5.0 12 Version: 4.5.0 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
r3018905 r3031015 648 648 } 649 649 650 this.event.t imeZone= this.tzBrowser;650 this.event.tzBrowser = this.tzBrowser; 651 651 this.event.registrationStartDate = new Date(this.event.startDate.getTime() - (106 - this.registrationWindow[0]) * 24 * 3600 * 1000); 652 652 if (!this.eventObject.rrule.count) { … … 1273 1273 this.event.hybridVenueId && this.event.hybridVenueId !== 0 && this.venues.find(x => x.id === this.event.hybridVenueId) && 1274 1274 this.venues.find(x => x.id === this.event.hybridVenueId).isZoom === true); 1275 }, 1276 1277 isZoom: function () { 1278 return this.venues.length > 0 && 1279 this.venues.filter(x => x.isZoom).length > 0 && 1280 (this.event.venueId && this.event.venueId !== 0 && this.venues.find(x => x.id === this.event.venueId) && 1281 this.venues.find(x => x.id === this.event.venueId).isZoom === true); 1275 1282 } 1276 1283 } -
event-agent/trunk/admin/partials/events.php
r3018905 r3031015 269 269 </el-col> 270 270 </el-row> 271 <el-form-item v-if="isZoom()"> 272 <ea-label-help 273 label="<?php esc_html_e('Time Zone', 'event-agent'); ?>" 274 content="<?php esc_html_e('The time zone of this event.', 'event-agent'); ?>"></ea-label-help> 275 <el-select v-model="event.timeZone" placeholder="<?php esc_html_e('Time Zone', 'event-agent'); ?>" filterable> 276 <el-option v-for="timezone in event.timezones" :key="timezone.id" :label="timezone.displayName" :value="timezone.id"></el-option> 277 </el-select> 278 </el-form-item> 271 279 <el-form-item v-if="hasZoom()"> 272 280 <ea-label-help -
event-agent/trunk/event-agent.php
r3027501 r3031015 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. 4.913 * Version: 4.5.0 14 14 * Requires at least: 5.0 15 15 * Requires PHP: 7.0 … … 25 25 } 26 26 27 define( 'EVENT_AGENT_VERSION', '4. 4.9' );27 define( 'EVENT_AGENT_VERSION', '4.5.0' ); 28 28 29 29 require_once dirname(__FILE__).'/includes/activate.php';
Note: See TracChangeset
for help on using the changeset viewer.