Plugin Directory

Changeset 2742428


Ignore:
Timestamp:
06/14/2022 06:47:40 PM (4 years ago)
Author:
wappointment
Message:

Commit version 2.4.11 to trunk

Location:
wappointment/trunk
Files:
9 added
9 deleted
17 edited

Legend:

Unmodified
Added
Removed
  • wappointment/trunk/app/Formatters/EventsCalendar.php

    r2709311 r2742428  
    9090        $preparedClient = $this->prepareClient($event->client);
    9191        $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' => [
    9393            'title' => !empty($preparedClient) ? $preparedClient->name : __('Unknown client', 'wappointment'),
    9494            /* translators: %1$s is service name, %2$s is the duration  */
    9595            '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),
    9797            'location' => $event->location->name,
    9898        ], '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;
    99107    }
    100108    public function baseClassAppointment($owes, $event)
  • wappointment/trunk/app/Messages/AdminGeneratesDefault.php

    r2709311 r2742428  
    33namespace Wappointment\Messages;
    44
     5use Wappointment\Services\Addons;
    56use Wappointment\Services\Settings;
    67trait AdminGeneratesDefault
     
    1112        $date_start = $appointment->start_at->setTimezone($tz)->format(\Wappointment\Services\Settings::get('date_format'));
    1213        $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'));
    1419        $dataEmail = [
    1520            '<u>' . $this->subject . '</u>',
     
    2934            \sprintf(__("Client's email: %s", 'wappointment'), sanitize_text_field($client->email)),
    3035        ];
    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        }
    3946        if ($appointment->isZoom()) {
    4047            /* translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page */
  • wappointment/trunk/app/Models/Appointment/ManipulateDotcom.php

    r2679872 r2742428  
    2222    {
    2323        $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->getFullDurationInSec(), '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)];
    2525        if (empty($this->options['slots'])) {
    2626            $toDotcom['cancellink'] = $this->getLinkCancelEvent();
  • wappointment/trunk/app/Models/Appointment/ManipulateDuration.php

    r2645781 r2742428  
    2626        return isset($this->options) && isset($this->options['buffer_time']) ? (int) $this->options['buffer_time'] * 60 : 0;
    2727    }
     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    }
    2835    public function getBuffer()
    2936    {
  • wappointment/trunk/app/Models/Appointment/ManipulateLinks.php

    r2660065 r2742428  
    44
    55use Wappointment\Messages\EmailHelper;
     6use Wappointment\Services\CurrentUser;
    67use Wappointment\Services\Jitsi;
    78use Wappointment\Services\Settings;
     
    4647        return $this->getLocationVideo() == 'googlemeet' ? 'google' : $this->getLocationVideo();
    4748    }
     49    public function isJitsi()
     50    {
     51        return $this->getVideoProvider() === 'jitsi';
     52    }
    4853    public function getMeetingLink()
    4954    {
    5055        $video_provider = $this->getVideoProvider();
    51         if ($video_provider == 'jitsi') {
     56        if ($video_provider == 'jitsi' && $this->canShowLink()) {
    5257            return \Wappointment\Services\Jitsi::generate($this);
    5358        }
     
    5762    public function canShowLink()
    5863    {
     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        }
    5968        $when_shows_link = (int) \Wappointment\Services\Settings::get('video_link_shows');
    6069        if ($when_shows_link > 0 && $this->start_at->timestamp - $when_shows_link * 60 > \time() || $this->isOver()) {
  • wappointment/trunk/app/Services/CalendarParser.php

    r2727796 r2742428  
    140140            $timezoneTemp = $this->findTimezone($vevent->DTSTART['TZID']->getValue());
    141141        }
     142        if (empty($timezoneTemp)) {
     143            $timezoneTemp = $this->getStaff()->timezone;
     144        }
    142145        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;
    143153    }
    144154    private function getFormatedDate($carbonTime, $format = WAPPOINTMENT_DB_FORMAT)
  • wappointment/trunk/app/Services/CustomTZParser.php

    r2727796 r2742428  
    2020    {
    2121        $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                }
    2931            }
    3032        }
  • wappointment/trunk/app/Services/Status.php

    r2727796 r2742428  
    7979        $i = 0;
    8080        self::$diff = $statusRecurrent->end_at->timestamp - $statusRecurrent->start_at->timestamp;
     81        if (self::$diff == 0) {
     82            return $newEvents;
     83        }
    8184        $next = self::getNext($statusRecurrent, $from, $until, true);
    8285        while ($next) {
  • wappointment/trunk/dist/manifest.json

    r2727796 r2742428  
    77  "flags.png": "9c96e0ed7093c095fd33870329282962.png",
    88  "[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",
    1515  "group-calendars-manage.js": "group-calendars-manage.63ce0d48d5272b99d1a3.bundle.js",
    1616  "group-clients.js": "group-clients.31cd2afe52417c760f44.bundle.js",
     
    1818  "group-service-package.js": "group-service-package.535ae7302c673f8c5a26.bundle.js",
    1919  "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",
    2121  "group-viewingappointment.js": "group-viewingappointment.cfa239f0bbf94e9a8cdc.bundle.js",
    2222  "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",
    2424  "group-wizardinit.js": "group-wizardinit.f46cddbac82be6779009.bundle.js",
    25   "main.js": "main.f3cb008673e9fcbd613d.bundle.js",
     25  "main.js": "main.fc4f742a404305a9baca.bundle.js",
    2626  "style-flag.js": "style-flag.216cbd8bd046bf27d58a.bundle.js",
    2727  "toggle-off.svg": "e500252a27eb6af0b0c0853d856b3647.svg",
  • wappointment/trunk/index.php

    r2727796 r2742428  
    77/**
    88 * Plugin Name: Wappointment
    9  * Version: 2.4.10
     9 * Version: 2.4.11
    1010 * Plugin URI: https://wappointment.com
    1111 * Description: Clients quickly book a meeting with you on Zoom , GoogleMeet , the phone or at your office
     
    3333 */
    3434
    35 define('WAPPOINTMENT_VERSION', '2.4.10');
     35define('WAPPOINTMENT_VERSION', '2.4.11');
    3636define('WAPPOINTMENT_PHP_MIN', '7.0.0');
    3737define('WAPPOINTMENT_NAME', 'Wappointment');
  • wappointment/trunk/readme.txt

    r2727796 r2742428  
    148148
    149149== 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
    150164
    151165= 2.4.10 - 2022-05-21 =
  • wappointment/trunk/vendor/autoload.php

    r2727796 r2742428  
    33// autoload.php @generated by Composer
    44
     5if (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
    510require_once __DIR__ . '/composer/autoload_real.php';
    611
    7 return ComposerAutoloaderInit4eec9bf385c6bad66a909c64a5af6be3::getLoader();
     12return ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83::getLoader();
  • wappointment/trunk/vendor/composer/InstalledVersions.php

    r2709311 r2742428  
    2727    /**
    2828     * @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{}|null
     29     * @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
    3030     */
    3131    private static $installed;
     
    3636    /**
    3737     * @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[]}>}>
    3939     */
    4040    private static $installedByVendor = array();
     
    210210    /**
    211211     * @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}
    213213     */
    214214    public static function getRootPackage()
     
    222222     * @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.
    223223     * @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[]}>}
    225225     */
    226226    public static function getRawData()
     
    242242     *
    243243     * @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[]}>}>
    245245     */
    246246    public static function getAllRawData()
     
    264264     * @return void
    265265     *
    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}>} $data
     266     * @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
    267267     */
    268268    public static function reload($data)
     
    273273    /**
    274274     * @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[]}>}>
    276276     */
    277277    private static function getInstalled()
  • wappointment/trunk/vendor/composer/autoload_real.php

    r2727796 r2742428  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit4eec9bf385c6bad66a909c64a5af6be3
     5class ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit4eec9bf385c6bad66a909c64a5af6be3', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit4eec9bf385c6bad66a909c64a5af6be3', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit12696d909c9d3982c61d5378366a2d83', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         \Composer\Autoload\ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::getInitializer($loader)();
     32        call_user_func(\Composer\Autoload\ComposerStaticInit12696d909c9d3982c61d5378366a2d83::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::$files;
     36        $includeFiles = \Composer\Autoload\ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$files;
    3737        foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequire4eec9bf385c6bad66a909c64a5af6be3($fileIdentifier, $file);
     38            composerRequire12696d909c9d3982c61d5378366a2d83($fileIdentifier, $file);
    3939        }
    4040
     
    4848 * @return void
    4949 */
    50 function composerRequire4eec9bf385c6bad66a909c64a5af6be3($fileIdentifier, $file)
     50function composerRequire12696d909c9d3982c61d5378366a2d83($fileIdentifier, $file)
    5151{
    5252    if (empty($GLOBALS['__wappo_autoload_files'][$fileIdentifier])) {
  • wappointment/trunk/vendor/composer/autoload_static.php

    r2727796 r2742428  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3
     7class ComposerStaticInit12696d909c9d3982c61d5378366a2d83
    88{
    99    public static $files = array (
     
    266266    {
    267267        return \Closure::bind(function () use ($loader) {
    268             $loader->prefixLengthsPsr4 = ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::$prefixLengthsPsr4;
    269             $loader->prefixDirsPsr4 = ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::$prefixDirsPsr4;
    270             $loader->classMap = ComposerStaticInit4eec9bf385c6bad66a909c64a5af6be3::$classMap;
     268            $loader->prefixLengthsPsr4 = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$prefixLengthsPsr4;
     269            $loader->prefixDirsPsr4 = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$prefixDirsPsr4;
     270            $loader->classMap = ComposerStaticInit12696d909c9d3982c61d5378366a2d83::$classMap;
    271271
    272272        }, null, ClassLoader::class);
  • wappointment/trunk/vendor/composer/installed.php

    r2727796 r2742428  
    33namespace WappoVendor;
    44
    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)));
     5return 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  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Wappointment 2.4.10\n"
     5"Project-Id-Version: Wappointment 2.4.11\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wappointment-plugin\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2022-05-21T12:51:00+00:00\n"
     12"POT-Creation-Date: 2022-06-14T18:34:57+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.5.0\n"
     
    205205
    206206#. translators: %s - email address.
    207 #: app/Formatters/EventsCalendar.php:153
     207#: app/Formatters/EventsCalendar.php:162
    208208msgid "Email: %s"
    209209msgstr ""
    210210
    211211#. translators: %1$s is label %2$s is value
    212 #: app/Formatters/EventsCalendar.php:160
     212#: app/Formatters/EventsCalendar.php:169
    213213msgid "%1$s: %2$s"
    214214msgstr ""
    215215
    216 #: app/Formatters/EventsCalendar.php:171
     216#: app/Formatters/EventsCalendar.php:180
    217217msgid "Timezone"
    218218msgstr ""
    219219
    220 #: app/Formatters/EventsCalendar.php:173
     220#: app/Formatters/EventsCalendar.php:182
    221221msgid "Owes"
    222222msgstr ""
     
    14901490#: app/Lists/widget_settings.php:50
    14911491#: app/Models/Appointment/ManipulateDuration.php:26
    1492 #: app/Models/Appointment/ManipulateDuration.php:37
     1492#: app/Models/Appointment/ManipulateDuration.php:45
    14931493msgid "min"
    14941494msgstr ""
     
    17411741#. translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page
    17421742#: app/Lists/widget_translations.php:8
    1743 #: app/Messages/AdminGeneratesDefault.php:43
     1743#: app/Messages/AdminGeneratesDefault.php:54
    17441744msgid "Begin meeting"
    17451745msgstr ""
     
    18281828
    18291829#. translators: %s is replaced with the date the appointment startt at
    1830 #: app/Messages/AdminGeneratesDefault.php:18
     1830#: app/Messages/AdminGeneratesDefault.php:25
    18311831#: app/Messages/AdminRescheduledAppointmentEmail.php:30
    18321832msgid "Date: %s"
     
    18341834
    18351835#. translators: %1$s is replaced with the start time, %2$s is replaced with the end time
    1836 #: app/Messages/AdminGeneratesDefault.php:20
     1836#: app/Messages/AdminGeneratesDefault.php:27
    18371837#: app/Messages/AdminRescheduledAppointmentEmail.php:35
    18381838msgid "Time: %1$s - %2$s"
     
    18401840
    18411841#. translators: %s is replaced with the staff name
    1842 #: app/Messages/AdminGeneratesDefault.php:22
     1842#: app/Messages/AdminGeneratesDefault.php:29
    18431843msgid "Staff: %s"
    18441844msgstr ""
    18451845
    18461846#. translators: %s is replaced with the service name
    1847 #: app/Messages/AdminGeneratesDefault.php:24
     1847#: app/Messages/AdminGeneratesDefault.php:31
    18481848msgid "Service: %s"
    18491849msgstr ""
    18501850
    18511851#. translators: %s is replaced with the location name
    1852 #: app/Messages/AdminGeneratesDefault.php:26
     1852#: app/Messages/AdminGeneratesDefault.php:33
    18531853msgid "Location: %s"
    18541854msgstr ""
    18551855
    18561856#. translators: %s is replaced with the client's name
    1857 #: app/Messages/AdminGeneratesDefault.php:28
     1857#: app/Messages/AdminGeneratesDefault.php:35
    18581858msgid "Client's name: %s"
    18591859msgstr ""
    18601860
    18611861#. translators: %s is replaced with the client's email
    1862 #: app/Messages/AdminGeneratesDefault.php:30
     1862#: app/Messages/AdminGeneratesDefault.php:37
    18631863msgid "Client's email: %s"
    18641864msgstr ""
    18651865
     1866#. translators: %s is replaced with the client's phone
     1867#: app/Messages/AdminGeneratesDefault.php:43
     1868msgid "Client's phone: %s"
     1869msgstr ""
     1870
     1871#. translators: %s is replaced with the client's skype username
     1872#: app/Messages/AdminGeneratesDefault.php:47
     1873msgid "Client's skype: %s"
     1874msgstr ""
     1875
    18661876#. translators: %s is replaced with a "Begin the meeting" button linking to a wappointment page
    1867 #: app/Messages/AdminGeneratesDefault.php:43
     1877#: app/Messages/AdminGeneratesDefault.php:54
    18681878msgid "Video meeting: %s"
    18691879msgstr ""
Note: See TracChangeset for help on using the changeset viewer.