Changeset 2742428
- Timestamp:
- 06/14/2022 06:47:40 PM (4 years ago)
- Location:
- wappointment/trunk
- Files:
-
- 9 added
- 9 deleted
- 17 edited
-
app/Formatters/EventsCalendar.php (modified) (1 diff)
-
app/Messages/AdminGeneratesDefault.php (modified) (3 diffs)
-
app/Models/Appointment/ManipulateDotcom.php (modified) (1 diff)
-
app/Models/Appointment/ManipulateDuration.php (modified) (1 diff)
-
app/Models/Appointment/ManipulateLinks.php (modified) (3 diffs)
-
app/Services/CalendarParser.php (modified) (1 diff)
-
app/Services/CustomTZParser.php (modified) (1 diff)
-
app/Services/Status.php (modified) (1 diff)
-
dist/front.0e46994b961e24472a00.bundle.js (deleted)
-
dist/front.a07033a31fba8857e99f.bundle.js (added)
-
dist/group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard.26850a340bb402d525f0.bundle.js (deleted)
-
dist/group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard.61e7d7f6f03e8c0ded71.bundle.js (added)
-
dist/group-addons.300c733513b713fa8c7b.bundle.js (added)
-
dist/group-addons.70cec07cdf0c85ecef36.bundle.js (deleted)
-
dist/group-bookingform-group-viewingappointment.a91c8e143ad031bf494f.bundle.js (deleted)
-
dist/group-bookingform-group-viewingappointment.cee2ee4fc0811772e1ed.bundle.js (added)
-
dist/group-bookingform.37681b5716185c05d4a7.bundle.js (deleted)
-
dist/group-bookingform.48511d2c3721f0f617ae.bundle.js (added)
-
dist/group-calendar.ac5cee0389d76cd2dec8.bundle.js (deleted)
-
dist/group-calendar.cba7357020b12d820cd3.bundle.js (added)
-
dist/group-settings.66cf7ffb5e14850cfe46.bundle.js (added)
-
dist/group-settings.e86da2c7ac1161b1e80c.bundle.js (deleted)
-
dist/group-wizard2.7e07c1f3291f73bf275e.bundle.js (deleted)
-
dist/group-wizard2.c98e2cad469ab994b4c2.bundle.js (added)
-
dist/main.f3cb008673e9fcbd613d.bundle.js (deleted)
-
dist/main.fc4f742a404305a9baca.bundle.js (added)
-
dist/manifest.json (modified) (2 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/InstalledVersions.php (modified) (7 diffs)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (1 diff)
-
wappointment.pot (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wappointment/trunk/app/Formatters/EventsCalendar.php
r2709311 r2742428 90 90 $preparedClient = $this->prepareClient($event->client); 91 91 $nameService = isset($event->service->name) ? $event->service->name : 'Undefined service'; 92 return ['start' => $this->formatAppointmentTime($event->start_at), 'end' => $this->formatAppointmentTime($event->end_at), 'id' => $event->id, 'delId' => $event->id, 'location' => $event->getLocationSlug(), 'status' => $event->status, 'options' => $ event->options, 'client' => $preparedClient, 'type' => 'appointment', 'recurrent' => isset($event->recurrent) && $event->recurrent > 0, 'onlyDelete' => true, 'rendering' => (bool) $event->status ? 'appointment-confirmed' : 'appointment-pending', 'className' => apply_filters('wappointment_calendar_appointment_class', $this->baseClassAppointment($owes, $event), $event), 'owes' => $owes, 'display' => ['short' => [92 return ['start' => $this->formatAppointmentTime($event->start_at), 'end' => $this->formatAppointmentTime($event->end_at), 'id' => $event->id, 'delId' => $event->id, 'location' => $event->getLocationSlug(), 'status' => $event->status, 'options' => $this->formatEventOptions($event), 'client' => $preparedClient, 'type' => 'appointment', 'recurrent' => isset($event->recurrent) && $event->recurrent > 0, 'onlyDelete' => true, 'rendering' => (bool) $event->status ? 'appointment-confirmed' : 'appointment-pending', 'className' => apply_filters('wappointment_calendar_appointment_class', $this->baseClassAppointment($owes, $event), $event), 'owes' => $owes, 'display' => ['short' => [ 93 93 'title' => !empty($preparedClient) ? $preparedClient->name : __('Unknown client', 'wappointment'), 94 94 /* translators: %1$s is service name, %2$s is the duration */ 95 95 'service' => \sprintf(__('%1$s - %2$smin', 'wappointment'), $nameService, $event->getDurationInSec() / 60), 96 'time' => $this->formatAppointmentTime($event->start_at, $this->timeFormat) . ' - ' . $this->formatAppointmentTime($event-> end_at, $this->timeFormat),96 'time' => $this->formatAppointmentTime($event->start_at, $this->timeFormat) . ' - ' . $this->formatAppointmentTime($event->getEndTimeWithoutBuffer(), $this->timeFormat), 97 97 'location' => $event->location->name, 98 98 ], 'long' => $this->getClientOptions($preparedClient)]]; 99 } 100 private function formatEventOptions($event) 101 { 102 $options = $event->options; 103 if ($event->isJitsi()) { 104 $options['jitsi_url'] = $event->getMeetingLink(); 105 } 106 return $options; 99 107 } 100 108 public function baseClassAppointment($owes, $event) -
wappointment/trunk/app/Messages/AdminGeneratesDefault.php
r2709311 r2742428 3 3 namespace Wappointment\Messages; 4 4 5 use Wappointment\Services\Addons; 5 6 use Wappointment\Services\Settings; 6 7 trait AdminGeneratesDefault … … 11 12 $date_start = $appointment->start_at->setTimezone($tz)->format(\Wappointment\Services\Settings::get('date_format')); 12 13 $time_start = $appointment->start_at->setTimezone($tz)->format(\Wappointment\Services\Settings::get('time_format')); 13 $time_end = $appointment->end_at->setTimezone($tz)->format(\Wappointment\Services\Settings::get('time_format')); 14 $end_copy = $appointment->end_at->copy(); 15 if (!empty($appointment->options['buffer_time'])) { 16 $end_copy->subMinutes($appointment->options['buffer_time']); 17 } 18 $time_end = $end_copy->setTimezone($tz)->format(\Wappointment\Services\Settings::get('time_format')); 14 19 $dataEmail = [ 15 20 '<u>' . $this->subject . '</u>', … … 29 34 \sprintf(__("Client's email: %s", 'wappointment'), sanitize_text_field($client->email)), 30 35 ]; 31 // if (!empty($client->getPhone())) { 32 // /* translators: %s is replaced with the client's phone */ 33 // $dataEmail[] = sprintf(__("Client's phone: %s", 'wappointment'), sanitize_text_field($client->getPhone())); 34 // } 35 // if (!empty($client->getSkype())) { 36 // /* translators: %s is replaced with the client's skype username */ 37 // $dataEmail[] = sprintf(__("Client's skype: %s", 'wappointment'), sanitize_text_field($client->getSkype())); 38 // } 36 if (!\Wappointment\Services\Addons::isActive('wappointment_services')) { 37 if (!empty($client->getPhone())) { 38 /* translators: %s is replaced with the client's phone */ 39 $dataEmail[] = \sprintf(__("Client's phone: %s", 'wappointment'), sanitize_text_field($client->getPhone())); 40 } 41 if (!empty($client->getSkype())) { 42 /* translators: %s is replaced with the client's skype username */ 43 $dataEmail[] = \sprintf(__("Client's skype: %s", 'wappointment'), sanitize_text_field($client->getSkype())); 44 } 45 } 39 46 if ($appointment->isZoom()) { 40 47 /* translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page */ -
wappointment/trunk/app/Models/Appointment/ManipulateDotcom.php
r2679872 r2742428 22 22 { 23 23 $attendees = $this->getAttendees(); 24 $toDotcom = ['title' => $this->getTitle(false), 'type' => $this->type, 'video' => $this->getLocationVideo(), 'starts_at' => $this->start_at->timestamp, 'appointment_id' => $this->id, 'duration' => $this->get FullDurationInSec(), 'location' => $this->type == 0 ? $this->getServiceAddress() : $this->getLocation(), 'timezone' => $timezone, 'attendees' => $attendees, 'emails' => $this->getEmailAttendees($attendees)];24 $toDotcom = ['title' => $this->getTitle(false), 'type' => $this->type, 'video' => $this->getLocationVideo(), 'starts_at' => $this->start_at->timestamp, 'appointment_id' => $this->id, 'duration' => $this->getDurationInSec(), 'location' => $this->type == 0 ? $this->getServiceAddress() : $this->getLocation(), 'timezone' => $timezone, 'attendees' => $attendees, 'emails' => $this->getEmailAttendees($attendees)]; 25 25 if (empty($this->options['slots'])) { 26 26 $toDotcom['cancellink'] = $this->getLinkCancelEvent(); -
wappointment/trunk/app/Models/Appointment/ManipulateDuration.php
r2645781 r2742428 26 26 return isset($this->options) && isset($this->options['buffer_time']) ? (int) $this->options['buffer_time'] * 60 : 0; 27 27 } 28 public function getEndTimeWithoutBuffer() 29 { 30 if (!empty($this->options['buffer_time'])) { 31 return $this->end_at->subMinutes($this->options['buffer_time']); 32 } 33 return $this->end_at; 34 } 28 35 public function getBuffer() 29 36 { -
wappointment/trunk/app/Models/Appointment/ManipulateLinks.php
r2660065 r2742428 4 4 5 5 use Wappointment\Messages\EmailHelper; 6 use Wappointment\Services\CurrentUser; 6 7 use Wappointment\Services\Jitsi; 7 8 use Wappointment\Services\Settings; … … 46 47 return $this->getLocationVideo() == 'googlemeet' ? 'google' : $this->getLocationVideo(); 47 48 } 49 public function isJitsi() 50 { 51 return $this->getVideoProvider() === 'jitsi'; 52 } 48 53 public function getMeetingLink() 49 54 { 50 55 $video_provider = $this->getVideoProvider(); 51 if ($video_provider == 'jitsi' ) {56 if ($video_provider == 'jitsi' && $this->canShowLink()) { 52 57 return \Wappointment\Services\Jitsi::generate($this); 53 58 } … … 57 62 public function canShowLink() 58 63 { 64 //show link if admin or owns the appointment 65 if (\Wappointment\Services\CurrentUser::isAdmin() || \Wappointment\Services\CurrentUser::id() == $this->getStaff()->wp_user->ID) { 66 return true; 67 } 59 68 $when_shows_link = (int) \Wappointment\Services\Settings::get('video_link_shows'); 60 69 if ($when_shows_link > 0 && $this->start_at->timestamp - $when_shows_link * 60 > \time() || $this->isOver()) { -
wappointment/trunk/app/Services/CalendarParser.php
r2727796 r2742428 140 140 $timezoneTemp = $this->findTimezone($vevent->DTSTART['TZID']->getValue()); 141 141 } 142 if (empty($timezoneTemp)) { 143 $timezoneTemp = $this->getStaff()->timezone; 144 } 142 145 return \Wappointment\ClassConnect\Carbon::parse($vcalDateTimeString, $timezoneTemp); 146 } 147 private function getStaff() 148 { 149 if (empty($this->staff)) { 150 $this->staff = new \Wappointment\WP\Staff((int) $this->staff_id); 151 } 152 return $this->staff; 143 153 } 144 154 private function getFormatedDate($carbonTime, $format = WAPPOINTMENT_DB_FORMAT) -
wappointment/trunk/app/Services/CustomTZParser.php
r2727796 r2742428 20 20 { 21 21 $found_customtimezone = false; 22 foreach ($vcalObject->VTIMEZONE->children() as $childrenTZ) { 23 if ($childrenTZ->name === 'TZID' && $childrenTZ->getValue() === 'Customized Time Zone') { 24 $found_customtimezone = true; 25 $this->initCustomTZ($childrenTZ); 26 } 27 if (\in_array($childrenTZ->name, ['STANDARD', 'DAYLIGHT']) && $found_customtimezone) { 28 $this->setCustomTZProps($childrenTZ); 22 if (!empty($vcalObject->VTIMEZONE) && \method_exists($vcalObject->VTIMEZONE, 'children')) { 23 foreach ($vcalObject->VTIMEZONE->children() as $childrenTZ) { 24 if ($childrenTZ->name === 'TZID' && $childrenTZ->getValue() === 'Customized Time Zone') { 25 $found_customtimezone = true; 26 $this->initCustomTZ($childrenTZ); 27 } 28 if (\in_array($childrenTZ->name, ['STANDARD', 'DAYLIGHT']) && $found_customtimezone) { 29 $this->setCustomTZProps($childrenTZ); 30 } 29 31 } 30 32 } -
wappointment/trunk/app/Services/Status.php
r2727796 r2742428 79 79 $i = 0; 80 80 self::$diff = $statusRecurrent->end_at->timestamp - $statusRecurrent->start_at->timestamp; 81 if (self::$diff == 0) { 82 return $newEvents; 83 } 81 84 $next = self::getNext($statusRecurrent, $from, $until, true); 82 85 while ($next) { -
wappointment/trunk/dist/manifest.json
r2727796 r2742428 7 7 "flags.png": "9c96e0ed7093c095fd33870329282962.png", 8 8 "[email protected]": "f2c77a6b7e26ff160fdb4193b383b1ea.png", 9 "front.js": "front. 0e46994b961e24472a00.bundle.js",10 "group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard.js": "group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard. 26850a340bb402d525f0.bundle.js",11 "group-addons.js": "group-addons. 70cec07cdf0c85ecef36.bundle.js",12 "group-bookingform-group-viewingappointment.js": "group-bookingform-group-viewingappointment. a91c8e143ad031bf494f.bundle.js",13 "group-bookingform.js": "group-bookingform. 37681b5716185c05d4a7.bundle.js",14 "group-calendar.js": "group-calendar. ac5cee0389d76cd2dec8.bundle.js",9 "front.js": "front.a07033a31fba8857e99f.bundle.js", 10 "group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard.js": "group-addons-group-calendar-group-calendars-manage-group-settings-group-wizard.61e7d7f6f03e8c0ded71.bundle.js", 11 "group-addons.js": "group-addons.300c733513b713fa8c7b.bundle.js", 12 "group-bookingform-group-viewingappointment.js": "group-bookingform-group-viewingappointment.cee2ee4fc0811772e1ed.bundle.js", 13 "group-bookingform.js": "group-bookingform.48511d2c3721f0f617ae.bundle.js", 14 "group-calendar.js": "group-calendar.cba7357020b12d820cd3.bundle.js", 15 15 "group-calendars-manage.js": "group-calendars-manage.63ce0d48d5272b99d1a3.bundle.js", 16 16 "group-clients.js": "group-clients.31cd2afe52417c760f44.bundle.js", … … 18 18 "group-service-package.js": "group-service-package.535ae7302c673f8c5a26.bundle.js", 19 19 "group-service.js": "group-service.23b729da5c2c1cca3810.bundle.js", 20 "group-settings.js": "group-settings. e86da2c7ac1161b1e80c.bundle.js",20 "group-settings.js": "group-settings.66cf7ffb5e14850cfe46.bundle.js", 21 21 "group-viewingappointment.js": "group-viewingappointment.cfa239f0bbf94e9a8cdc.bundle.js", 22 22 "group-wizard.js": "group-wizard.3d7300e49525080102ea.bundle.js", 23 "group-wizard2.js": "group-wizard2. 7e07c1f3291f73bf275e.bundle.js",23 "group-wizard2.js": "group-wizard2.c98e2cad469ab994b4c2.bundle.js", 24 24 "group-wizardinit.js": "group-wizardinit.f46cddbac82be6779009.bundle.js", 25 "main.js": "main.f 3cb008673e9fcbd613d.bundle.js",25 "main.js": "main.fc4f742a404305a9baca.bundle.js", 26 26 "style-flag.js": "style-flag.216cbd8bd046bf27d58a.bundle.js", 27 27 "toggle-off.svg": "e500252a27eb6af0b0c0853d856b3647.svg", -
wappointment/trunk/index.php
r2727796 r2742428 7 7 /** 8 8 * Plugin Name: Wappointment 9 * Version: 2.4.1 09 * Version: 2.4.11 10 10 * Plugin URI: https://wappointment.com 11 11 * Description: Clients quickly book a meeting with you on Zoom , GoogleMeet , the phone or at your office … … 33 33 */ 34 34 35 define('WAPPOINTMENT_VERSION', '2.4.1 0');35 define('WAPPOINTMENT_VERSION', '2.4.11'); 36 36 define('WAPPOINTMENT_PHP_MIN', '7.0.0'); 37 37 define('WAPPOINTMENT_NAME', 'Wappointment'); -
wappointment/trunk/readme.txt
r2727796 r2742428 148 148 149 149 == Changelog == 150 151 = 2.4.11 - 2022-06-15 = 152 * added search box and improved pagination on media 153 * fixed phone number and skype missing from notification email 154 * fixed issues with .ics calendar import 155 * fixed set staff page on new event link 156 * fixed availability filter out old slots 157 * fixed issue auto-increment on availability slots generation in the frontend 158 * fixed jitsi meeting link showing too early 159 * fixed missing jitsi link from backend 160 * fixed admin duration when buffer, in emails and in admin 161 * fixed save to calendar button when booking confirmed for firefox and chrome 162 * fixed wrong duration sent to google cal 163 * fixed when no timezone is set in ics calendar default to staff timezone 150 164 151 165 = 2.4.10 - 2022-05-21 = -
wappointment/trunk/vendor/autoload.php
r2727796 r2742428 3 3 // autoload.php @generated by Composer 4 4 5 if (PHP_VERSION_ID < 50600) { 6 echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; 7 exit(1); 8 } 9 5 10 require_once __DIR__ . '/composer/autoload_real.php'; 6 11 7 return ComposerAutoloaderInit 4eec9bf385c6bad66a909c64a5af6be3::getLoader();12 return ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83::getLoader(); -
wappointment/trunk/vendor/composer/InstalledVersions.php
r2709311 r2742428 27 27 /** 28 28 * @var mixed[]|null 29 * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null29 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null 30 30 */ 31 31 private static $installed; … … 36 36 /** 37 37 * @var array[] 38 * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>38 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 39 39 */ 40 40 private static $installedByVendor = array(); … … 210 210 /** 211 211 * @return array 212 * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}212 * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} 213 213 */ 214 214 public static function getRootPackage() … … 222 222 * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. 223 223 * @return array[] 224 * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}224 * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} 225 225 */ 226 226 public static function getRawData() … … 242 242 * 243 243 * @return array[] 244 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>244 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 245 245 */ 246 246 public static function getAllRawData() … … 264 264 * @return void 265 265 * 266 * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data266 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data 267 267 */ 268 268 public static function reload($data) … … 273 273 /** 274 274 * @return array[] 275 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>275 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 276 276 */ 277 277 private static function getInstalled() -
wappointment/trunk/vendor/composer/autoload_real.php
r2727796 r2742428 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 4eec9bf385c6bad66a909c64a5af6be35 class ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 4eec9bf385c6bad66a909c64a5af6be3', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 4eec9bf385c6bad66a909c64a5af6be3', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 \Composer\Autoload\ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::getInitializer($loader)();32 call_user_func(\Composer\Autoload\ComposerStaticInit12696d909c9d3982c61d5378366a2d83::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit 4eec9bf385c6bad66a909c64a5af6be3::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire 4eec9bf385c6bad66a909c64a5af6be3($fileIdentifier, $file);38 composerRequire12696d909c9d3982c61d5378366a2d83($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire 4eec9bf385c6bad66a909c64a5af6be3($fileIdentifier, $file)50 function composerRequire12696d909c9d3982c61d5378366a2d83($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__wappo_autoload_files'][$fileIdentifier])) { -
wappointment/trunk/vendor/composer/autoload_static.php
r2727796 r2742428 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 4eec9bf385c6bad66a909c64a5af6be37 class ComposerStaticInit12696d909c9d3982c61d5378366a2d83 8 8 { 9 9 public static $files = array ( … … 266 266 { 267 267 return \Closure::bind(function () use ($loader) { 268 $loader->prefixLengthsPsr4 = ComposerStaticInit 4eec9bf385c6bad66a909c64a5af6be3::$prefixLengthsPsr4;269 $loader->prefixDirsPsr4 = ComposerStaticInit 4eec9bf385c6bad66a909c64a5af6be3::$prefixDirsPsr4;270 $loader->classMap = ComposerStaticInit 4eec9bf385c6bad66a909c64a5af6be3::$classMap;268 $loader->prefixLengthsPsr4 = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$prefixLengthsPsr4; 269 $loader->prefixDirsPsr4 = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$prefixDirsPsr4; 270 $loader->classMap = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$classMap; 271 271 272 272 }, null, ClassLoader::class); -
wappointment/trunk/vendor/composer/installed.php
r2727796 r2742428 3 3 namespace WappoVendor; 4 4 5 return array('root' => array(' pretty_version' => 'dev-master', 'version' => 'dev-master', 'type' => 'worpdress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => '47bc560f864610f78839dc8d07fc7115788d5c55', 'name' => 'wappointment/wappointment', 'dev' => \false), 'versions' => array('doctrine/annotations' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/annotations', 'aliases' => array(), 'reference' => '54cacc9b81758b14e3ce750f205a393d52339e97', 'dev_requirement' => \false), 'doctrine/cache' => array('pretty_version' => 'v1.6.2', 'version' => '1.6.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/cache', 'aliases' => array(), 'reference' => 'eb152c5100571c7a45470ff2a35095ab3f3b900b', 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'reference' => '1a4fb7e902202c33cce8c55989b945612943c2ba', 'dev_requirement' => \false), 'doctrine/common' => array('pretty_version' => 'v2.7.3', 'version' => '2.7.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/common', 'aliases' => array(), 'reference' => '4acb8f89626baafede6ee5475bc5844096eba8a9', 'dev_requirement' => \false), 'doctrine/dbal' => array('pretty_version' => 'v2.5.13', 'version' => '2.5.13.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/dbal', 'aliases' => array(), 'reference' => '729340d8d1eec8f01bff708e12e449a3415af873', 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'reference' => 'e11d84c6e018beedd929cff5220969a3c6d1d462', 'dev_requirement' => \false), 'doctrine/lexer' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/lexer', 'aliases' => array(), 'reference' => '1febd6c3ef84253d7c815bed85fc622ad207a9f8', 'dev_requirement' => \false), 'egulias/email-validator' => array('pretty_version' => '2.1.14', 'version' => '2.1.14.0', 'type' => 'library', 'install_path' => __DIR__ . '/../egulias/email-validator', 'aliases' => array(), 'reference' => 'c4b8d12921999d8a561004371701dbc2e05b5ece', 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '6.5.2', 'version' => '6.5.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'reference' => '43ece0e75098b7ecd8d13918293029e555a50f82', 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => 'v1.3.1', 'version' => '1.3.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'reference' => 'a59da6cf61d80060647ff4d3eb2c03a2bc694646', 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '1.6.1', 'version' => '1.6.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'reference' => '239400de7a173fe9901b9ac7c06497751f00727a', 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'reference' => '7917f4c86ecf7f4d0efcfd83248ad3e301e08858', 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'reference' => 'b2a62b4a85485fca9cf5fa61a933ad64006ff528', 'dev_requirement' => \false), 'illuminate/database' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/database', 'aliases' => array(), 'reference' => 'f5403b3dd774eb89ff0ef5e633e57458c3dc537d', 'dev_requirement' => \false), 'illuminate/filesystem' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/filesystem', 'aliases' => array(), 'reference' => 'b8c0e36d47cfde3a0727bc6e2057775ff98a1bcd', 'dev_requirement' => \false), 'illuminate/http' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/http', 'aliases' => array(), 'reference' => 'ee799d1dcacd7fccfc665b0b0437bfbae784306a', 'dev_requirement' => \false), 'illuminate/pagination' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pagination', 'aliases' => array(), 'reference' => '686b121987164d161fe3440f407014ad026bdbbc', 'dev_requirement' => \false), 'illuminate/session' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/session', 'aliases' => array(), 'reference' => '248422140e7898ae0d5a4ed42e6e314c52677814', 'dev_requirement' => \false), 'illuminate/support' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/support', 'aliases' => array(), 'reference' => '5c405512d75dcaf5d37791badce02d86ed8e4bc4', 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '1.37.1', 'version' => '1.37.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'reference' => '5be4fdf97076a685b23efdedfc2b73ad0c5eab70', 'dev_requirement' => \false), 'paragonie/random_compat' => array('pretty_version' => 'v9.99.99', 'version' => '9.99.99.0', 'type' => 'library', 'install_path' => __DIR__ . '/../paragonie/random_compat', 'aliases' => array(), 'reference' => '84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95', 'dev_requirement' => \false), 'pelago/emogrifier' => array('pretty_version' => 'v3.1.0', 'version' => '3.1.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../pelago/emogrifier', 'aliases' => array(), 'reference' => 'f6a5c7d44612d86c3901c93f1592f5440e6b2cd8', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f', 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/log' => array('pretty_version' => '1.1.3', 'version' => '1.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => '0f73288fd15629204f9d42b7055f72dacbe811fc', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/simple-cache' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'dev_requirement' => \false), 'rakit/validation' => array('pretty_version' => 'v0.18.2', 'version' => '0.18.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../rakit/validation', 'aliases' => array(), 'reference' => '2d431c70f0fed550f3962dfc94ffe78eabdada66', 'dev_requirement' => \false), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'dev_requirement' => \false), 'sabre/uri' => array('pretty_version' => '2.1.3', 'version' => '2.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/uri', 'aliases' => array(), 'reference' => '18f454324f371cbcabdad3d0d3755b4b0182095d', 'dev_requirement' => \false), 'sabre/vobject' => array('pretty_version' => '4.2.2', 'version' => '4.2.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/vobject', 'aliases' => array(), 'reference' => '449616b2d45b95c8973975de23f34a3d14f63b4b', 'dev_requirement' => \false), 'sabre/xml' => array('pretty_version' => '2.1.3', 'version' => '2.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/xml', 'aliases' => array(), 'reference' => 'f08a58f57e2b0d7df769a432756aa371417ab9eb', 'dev_requirement' => \false), 'soundasleep/html2text' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../soundasleep/html2text', 'aliases' => array(), 'reference' => 'cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad', 'dev_requirement' => \false), 'symfony/css-selector' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/css-selector', 'aliases' => array(), 'reference' => '9ccf6e78077a3fc1596e6c7b5958008965a11518', 'dev_requirement' => \false), 'symfony/debug' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/debug', 'aliases' => array(), 'reference' => 'ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29', 'dev_requirement' => \false), 'symfony/event-dispatcher' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), 'reference' => '9d4e22943b73acc1ba50595b7de1a01fe9dbad48', 'dev_requirement' => \false), 'symfony/finder' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'reference' => '5ec813ccafa8164ef21757e8c725d3a57da59200', 'dev_requirement' => \false), 'symfony/http-foundation' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), 'reference' => 'a8833c56f6a4abcf17a319d830d71fdb0ba93675', 'dev_requirement' => \false), 'symfony/http-kernel' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-kernel', 'aliases' => array(), 'reference' => 'c15b5acab571224b1bf792692ff2ad63239081fe', 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'reference' => '4719fa9c18b0464d399f1a63bf624b42b6fa8d14', 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'reference' => '81ffd3a9c6d707be22e3012b827de1c9775fc5ac', 'dev_requirement' => \false), 'symfony/polyfill-php56' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php56', 'aliases' => array(), 'reference' => 'd51ec491c8ddceae7dca8dd6c7e30428f543f37d', 'dev_requirement' => \false), 'symfony/polyfill-php70' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php70', 'aliases' => array(), 'reference' => '2a18e37a489803559284416df58c71ccebe50bf0', 'dev_requirement' => \false), 'symfony/polyfill-util' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-util', 'aliases' => array(), 'reference' => 'd8e76c104127675d0ea3df3be0f2ae24a8619027', 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'reference' => 'e06ca83b2682eba25854b97a8a9af22c1da491f5', 'dev_requirement' => \false), 'tightenco/collect' => array('dev_requirement' => \false, 'replaced' => array(0 => '<5.5.33')), 'true/punycode' => array('pretty_version' => 'v2.1.1', 'version' => '2.1.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../true/punycode', 'aliases' => array(), 'reference' => 'a4d0c11a36dd7f4e7cd7096076cab6d3378a071e', 'dev_requirement' => \false), 'wappointment/wappointment' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'type' => 'worpdress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => '47bc560f864610f78839dc8d07fc7115788d5c55', 'dev_requirement' => \false)));5 return array('root' => array('name' => 'wappointment/wappointment', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5d24f658e7a5b9f57a303aeca267cbdaa9a88eb9', 'type' => 'worpdress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('doctrine/annotations' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => '54cacc9b81758b14e3ce750f205a393d52339e97', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/annotations', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/cache' => array('pretty_version' => 'v1.6.2', 'version' => '1.6.2.0', 'reference' => 'eb152c5100571c7a45470ff2a35095ab3f3b900b', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/cache', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => '1a4fb7e902202c33cce8c55989b945612943c2ba', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/common' => array('pretty_version' => 'v2.7.3', 'version' => '2.7.3.0', 'reference' => '4acb8f89626baafede6ee5475bc5844096eba8a9', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/common', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/dbal' => array('pretty_version' => 'v2.5.13', 'version' => '2.5.13.0', 'reference' => '729340d8d1eec8f01bff708e12e449a3415af873', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/dbal', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'reference' => 'e11d84c6e018beedd929cff5220969a3c6d1d462', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/lexer' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => '1febd6c3ef84253d7c815bed85fc622ad207a9f8', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/lexer', 'aliases' => array(), 'dev_requirement' => \false), 'egulias/email-validator' => array('pretty_version' => '2.1.14', 'version' => '2.1.14.0', 'reference' => 'c4b8d12921999d8a561004371701dbc2e05b5ece', 'type' => 'library', 'install_path' => __DIR__ . '/../egulias/email-validator', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '6.5.2', 'version' => '6.5.2.0', 'reference' => '43ece0e75098b7ecd8d13918293029e555a50f82', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => 'v1.3.1', 'version' => '1.3.1.0', 'reference' => 'a59da6cf61d80060647ff4d3eb2c03a2bc694646', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '1.6.1', 'version' => '1.6.1.0', 'reference' => '239400de7a173fe9901b9ac7c06497751f00727a', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => '7917f4c86ecf7f4d0efcfd83248ad3e301e08858', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => 'b2a62b4a85485fca9cf5fa61a933ad64006ff528', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/database' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => 'f5403b3dd774eb89ff0ef5e633e57458c3dc537d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/database', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/filesystem' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => 'b8c0e36d47cfde3a0727bc6e2057775ff98a1bcd', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/filesystem', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/http' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => 'ee799d1dcacd7fccfc665b0b0437bfbae784306a', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/http', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/pagination' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => '686b121987164d161fe3440f407014ad026bdbbc', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pagination', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/session' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => '248422140e7898ae0d5a4ed42e6e314c52677814', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/session', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/support' => array('pretty_version' => 'v5.5.44', 'version' => '5.5.44.0', 'reference' => '5c405512d75dcaf5d37791badce02d86ed8e4bc4', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/support', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '1.37.1', 'version' => '1.37.1.0', 'reference' => '5be4fdf97076a685b23efdedfc2b73ad0c5eab70', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'paragonie/random_compat' => array('pretty_version' => 'v9.99.99', 'version' => '9.99.99.0', 'reference' => '84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95', 'type' => 'library', 'install_path' => __DIR__ . '/../paragonie/random_compat', 'aliases' => array(), 'dev_requirement' => \false), 'pelago/emogrifier' => array('pretty_version' => 'v3.1.0', 'version' => '3.1.0.0', 'reference' => 'f6a5c7d44612d86c3901c93f1592f5440e6b2cd8', 'type' => 'library', 'install_path' => __DIR__ . '/../pelago/emogrifier', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/log' => array('pretty_version' => '1.1.3', 'version' => '1.1.3.0', 'reference' => '0f73288fd15629204f9d42b7055f72dacbe811fc', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/simple-cache' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'rakit/validation' => array('pretty_version' => 'v0.18.2', 'version' => '0.18.2.0', 'reference' => '2d431c70f0fed550f3962dfc94ffe78eabdada66', 'type' => 'library', 'install_path' => __DIR__ . '/../rakit/validation', 'aliases' => array(), 'dev_requirement' => \false), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'sabre/uri' => array('pretty_version' => '2.1.3', 'version' => '2.1.3.0', 'reference' => '18f454324f371cbcabdad3d0d3755b4b0182095d', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/uri', 'aliases' => array(), 'dev_requirement' => \false), 'sabre/vobject' => array('pretty_version' => '4.2.2', 'version' => '4.2.2.0', 'reference' => '449616b2d45b95c8973975de23f34a3d14f63b4b', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/vobject', 'aliases' => array(), 'dev_requirement' => \false), 'sabre/xml' => array('pretty_version' => '2.1.3', 'version' => '2.1.3.0', 'reference' => 'f08a58f57e2b0d7df769a432756aa371417ab9eb', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/xml', 'aliases' => array(), 'dev_requirement' => \false), 'soundasleep/html2text' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'reference' => 'cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad', 'type' => 'library', 'install_path' => __DIR__ . '/../soundasleep/html2text', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/css-selector' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => '9ccf6e78077a3fc1596e6c7b5958008965a11518', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/css-selector', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/debug' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => 'ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/debug', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => '9d4e22943b73acc1ba50595b7de1a01fe9dbad48', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/finder' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => '5ec813ccafa8164ef21757e8c725d3a57da59200', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-foundation' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => 'a8833c56f6a4abcf17a319d830d71fdb0ba93675', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-kernel' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => 'c15b5acab571224b1bf792692ff2ad63239081fe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-kernel', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'reference' => '4719fa9c18b0464d399f1a63bf624b42b6fa8d14', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'reference' => '81ffd3a9c6d707be22e3012b827de1c9775fc5ac', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php56' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'reference' => 'd51ec491c8ddceae7dca8dd6c7e30428f543f37d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php56', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php70' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'reference' => '2a18e37a489803559284416df58c71ccebe50bf0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php70', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-util' => array('pretty_version' => 'v1.15.0', 'version' => '1.15.0.0', 'reference' => 'd8e76c104127675d0ea3df3be0f2ae24a8619027', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-util', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v3.4.39', 'version' => '3.4.39.0', 'reference' => 'e06ca83b2682eba25854b97a8a9af22c1da491f5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'tightenco/collect' => array('dev_requirement' => \false, 'replaced' => array(0 => '<5.5.33')), 'true/punycode' => array('pretty_version' => 'v2.1.1', 'version' => '2.1.1.0', 'reference' => 'a4d0c11a36dd7f4e7cd7096076cab6d3378a071e', 'type' => 'library', 'install_path' => __DIR__ . '/../true/punycode', 'aliases' => array(), 'dev_requirement' => \false), 'wappointment/wappointment' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5d24f658e7a5b9f57a303aeca267cbdaa9a88eb9', 'type' => 'worpdress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false))); -
wappointment/trunk/wappointment.pot
r2727796 r2742428 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Wappointment 2.4.1 0\n"5 "Project-Id-Version: Wappointment 2.4.11\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wappointment-plugin\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2022-0 5-21T12:51:00+00:00\n"12 "POT-Creation-Date: 2022-06-14T18:34:57+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.5.0\n" … … 205 205 206 206 #. translators: %s - email address. 207 #: app/Formatters/EventsCalendar.php:1 53207 #: app/Formatters/EventsCalendar.php:162 208 208 msgid "Email: %s" 209 209 msgstr "" 210 210 211 211 #. translators: %1$s is label %2$s is value 212 #: app/Formatters/EventsCalendar.php:16 0212 #: app/Formatters/EventsCalendar.php:169 213 213 msgid "%1$s: %2$s" 214 214 msgstr "" 215 215 216 #: app/Formatters/EventsCalendar.php:1 71216 #: app/Formatters/EventsCalendar.php:180 217 217 msgid "Timezone" 218 218 msgstr "" 219 219 220 #: app/Formatters/EventsCalendar.php:1 73220 #: app/Formatters/EventsCalendar.php:182 221 221 msgid "Owes" 222 222 msgstr "" … … 1490 1490 #: app/Lists/widget_settings.php:50 1491 1491 #: app/Models/Appointment/ManipulateDuration.php:26 1492 #: app/Models/Appointment/ManipulateDuration.php: 371492 #: app/Models/Appointment/ManipulateDuration.php:45 1493 1493 msgid "min" 1494 1494 msgstr "" … … 1741 1741 #. translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page 1742 1742 #: app/Lists/widget_translations.php:8 1743 #: app/Messages/AdminGeneratesDefault.php: 431743 #: app/Messages/AdminGeneratesDefault.php:54 1744 1744 msgid "Begin meeting" 1745 1745 msgstr "" … … 1828 1828 1829 1829 #. translators: %s is replaced with the date the appointment startt at 1830 #: app/Messages/AdminGeneratesDefault.php: 181830 #: app/Messages/AdminGeneratesDefault.php:25 1831 1831 #: app/Messages/AdminRescheduledAppointmentEmail.php:30 1832 1832 msgid "Date: %s" … … 1834 1834 1835 1835 #. translators: %1$s is replaced with the start time, %2$s is replaced with the end time 1836 #: app/Messages/AdminGeneratesDefault.php:2 01836 #: app/Messages/AdminGeneratesDefault.php:27 1837 1837 #: app/Messages/AdminRescheduledAppointmentEmail.php:35 1838 1838 msgid "Time: %1$s - %2$s" … … 1840 1840 1841 1841 #. translators: %s is replaced with the staff name 1842 #: app/Messages/AdminGeneratesDefault.php:2 21842 #: app/Messages/AdminGeneratesDefault.php:29 1843 1843 msgid "Staff: %s" 1844 1844 msgstr "" 1845 1845 1846 1846 #. translators: %s is replaced with the service name 1847 #: app/Messages/AdminGeneratesDefault.php: 241847 #: app/Messages/AdminGeneratesDefault.php:31 1848 1848 msgid "Service: %s" 1849 1849 msgstr "" 1850 1850 1851 1851 #. translators: %s is replaced with the location name 1852 #: app/Messages/AdminGeneratesDefault.php: 261852 #: app/Messages/AdminGeneratesDefault.php:33 1853 1853 msgid "Location: %s" 1854 1854 msgstr "" 1855 1855 1856 1856 #. translators: %s is replaced with the client's name 1857 #: app/Messages/AdminGeneratesDefault.php: 281857 #: app/Messages/AdminGeneratesDefault.php:35 1858 1858 msgid "Client's name: %s" 1859 1859 msgstr "" 1860 1860 1861 1861 #. translators: %s is replaced with the client's email 1862 #: app/Messages/AdminGeneratesDefault.php:3 01862 #: app/Messages/AdminGeneratesDefault.php:37 1863 1863 msgid "Client's email: %s" 1864 1864 msgstr "" 1865 1865 1866 #. translators: %s is replaced with the client's phone 1867 #: app/Messages/AdminGeneratesDefault.php:43 1868 msgid "Client's phone: %s" 1869 msgstr "" 1870 1871 #. translators: %s is replaced with the client's skype username 1872 #: app/Messages/AdminGeneratesDefault.php:47 1873 msgid "Client's skype: %s" 1874 msgstr "" 1875 1866 1876 #. translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page 1867 #: app/Messages/AdminGeneratesDefault.php: 431877 #: app/Messages/AdminGeneratesDefault.php:54 1868 1878 msgid "Video meeting: %s" 1869 1879 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.