Файловый менеджер - Редактировать - /home/bean7936/perfect-community.com/442aa3/popup-maker.zip
Назад
PK ���\���t t templates/index.phpnu �[��� <?php /** * Silence is golden. * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ PK ���\�6va a templates/popup.phpnu �[��� <?php /** * Popup Templates * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ $has_title = pum_get_popup_title() !== ''; ?> <div id="pum-<?php pum_popup_ID(); ?>" role="dialog" aria-modal="false" <?php if ( $has_title ) : ?> aria-labelledby="pum_popup_title_<?php pum_popup_ID(); ?>" <?php endif; ?> class="<?php pum_popup_classes(); ?>" <?php pum_popup_data_attr(); ?> > <div id="popmake-<?php pum_popup_ID(); ?>" class="<?php pum_popup_classes( null, 'container' ); ?>"> <?php do_action( 'pum_popup_before_title' ); ?> <?php do_action( 'popmake_popup_before_inner' ); // Backward compatibility. ?> <?php /** * Render the title if not empty. */ ?> <?php if ( $has_title ) : ?> <div id="pum_popup_title_<?php pum_popup_ID(); ?>" class="<?php pum_popup_classes( null, 'title' ); ?>"> <?php pum_popup_title(); ?> </div> <?php endif; ?> <?php do_action( 'pum_popup_before_content' ); ?> <?php /** * Render the content. */ ?> <div class="<?php pum_popup_classes( null, 'content' ); ?>" <?php pum_popup_content_tabindex_attr(); ?>> <?php pum_popup_content(); ?> </div> <?php do_action( 'pum_popup_after_content' ); ?> <?php do_action( 'popmake_popup_after_inner' ); // Backward compatibility. ?> <?php /** * Render the close button if needed. */ ?> <?php if ( pum_show_close_button() ) : ?> <button type="button" class="<?php pum_popup_classes( null, 'close' ); ?>" aria-label="<?php esc_attr_e( 'Close', 'popup-maker' ); ?>"> <?php pum_popup_close_text(); ?> </button> <?php endif; ?> </div> </div> PK ���\̗�� � templates/single-popup.phpnu �[��� <?php /** * Single-Popup Templates * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ get_header(); get_footer(); PK ���\�O�py y % vendor-prefixed/psr/container/LICENSEnu �[��� The MIT License (MIT) Copyright (c) 2013-2016 container-interop Copyright (c) 2016 PHP Framework Interoperability Group Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK ���\ �( ( 8 vendor-prefixed/psr/container/src/ContainerInterface.phpnu �[��� <?php declare(strict_types=1); namespace PopupMaker\Vendor\Psr\Container; /** * Describes the interface of a container that exposes methods to read its entries. */ interface ContainerInterface { /** * Finds an entry of the container by its identifier and returns it. * * @param string $id Identifier of the entry to look for. * * @throws NotFoundExceptionInterface No entry was found for **this** identifier. * @throws ContainerExceptionInterface Error while retrieving the entry. * * @return mixed Entry. */ public function get(string $id); /** * Returns true if the container can return an entry for the given identifier. * Returns false otherwise. * * `has($id)` returning true does not mean that `get($id)` will not throw an exception. * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`. * * @param string $id Identifier of the entry to look for. * * @return bool */ public function has(string $id): bool; } PK ���\GA��� � @ vendor-prefixed/psr/container/src/NotFoundExceptionInterface.phpnu �[��� <?php namespace PopupMaker\Vendor\Psr\Container; /** * No entry was found in the container. */ interface NotFoundExceptionInterface extends ContainerExceptionInterface { } PK ���\ԨR�� � A vendor-prefixed/psr/container/src/ContainerExceptionInterface.phpnu �[��� <?php namespace PopupMaker\Vendor\Psr\Container; use Throwable; /** * Base interface representing a generic exception in a container. */ interface ContainerExceptionInterface extends Throwable { } PK ���\o�� � 0 vendor-prefixed/composer/autoload_namespaces.phpnu �[��� <?php // autoload_namespaces.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'PopupMaker\\Vendor\\Pimple' => array($vendorDir . '/pimple/pimple/src'), ); PK ���\wII�� � * vendor-prefixed/composer/autoload_psr4.phpnu �[��� <?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'PopupMaker\\Vendor\\Psr\\Container\\' => array($vendorDir . '/psr/container/src'), 'PopupMaker\\Vendor\\CodeAtlantic\\PrerequisiteChecks\\' => array($vendorDir . '/code-atlantic/prerequisite-checks/src'), 'PopupMaker\\Vendor\\CodeAtlantic\\Autoloader\\' => array($vendorDir . '/code-atlantic/wp-autoloader/src'), 'PopupMaker\\' => array($baseDir . '/classes'), ); PK ���\V�g�, , vendor-prefixed/composer/LICENSEnu �[��� Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK ���\�z�9� � &