uawdijnntqw1x1x1
IP : 216.73.217.45
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
language
/
..
/
cache
/
.
/
..
/
api
/
..
/
api
/
..
/
tmp
/
..
/
cli
/
..
/
cli
/
..
/
weblink.zip
/
/
PK]��\�'�U��src/Extension/Weblink.phpnu�[���<?php /** * @package Joomla.Plugin * @subpackage Editors-xtd.weblink * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Plugin\EditorsXtd\Weblink\Extension; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects use Joomla\CMS\Application\CMSApplicationInterface; use Joomla\CMS\Language\Text; use Joomla\CMS\Object\CMSObject; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Session\Session; use Joomla\Database\DatabaseInterface; use Joomla\Event\DispatcherInterface; /** * Editor Web Link button * * @since __DEPLOY_VERSION__ */ final class Weblink extends CMSPlugin { /** * Load the language file on instantiation. * * @var boolean * @since __DEPLOY_VERSION__ */ protected $autoloadLanguage = true; /** * Constructor * * @param DispatcherInterface $dispatcher * @param array $config * @param DatabaseInterface $database */ public function __construct(DispatcherInterface $dispatcher, array $config, CMSApplicationInterface $application) { parent::__construct($dispatcher, $config); $this->setApplication($application); } /** * Display the button * * @param string $name The name of the button to add * * @return CMSObject The button options as JObject * * @since __DEPLOY_VERSION__ */ public function onDisplay($name) { $user = $this->getApplication()->getIdentity(); if ( $user->authorise('core.create', 'com_weblinks') || $user->authorise('core.edit', 'com_weblinks') || $user->authorise('core.edit.own', 'com_weblinks') ) { // The URL for the weblinks list $link = 'index.php?option=com_weblinks&view=weblinks&layout=modal&tmpl=component&' . Session::getFormToken() . '=1&editor=' . $name; $button = new CMSObject(); $button->modal = true; $button->link = $link; $button->text = Text::_('PLG_EDITORS-XTD_WEBLINK_BUTTON_WEBLINK'); $button->name = $this->_type . '_' . $this->_name; $button->icon = 'globe'; // phpcs:disable Generic.Files.LineLength $button->iconSVG = '<svg xmlns="http://www.w3.org/2000/svg" width="24 height="24" fill="currentColor" class="bi bi-globe" viewBox="0 0 16 16"> <path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z"/> </svg>'; // phpcs:enable Generic.Files.LineLength $button->options = [ 'height' => '300px', 'width' => '800px', 'bodyHeight' => '70', 'modalWidth' => '80', ]; return $button; } } } PK]��\ju'��*language/en-GB/plg_editors-xtd_weblink.ininu�[���; Joomla! Project ; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved. ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 PLG_EDITORS-XTD_WEBLINK="Button - Web Link" PLG_EDITORS-XTD_WEBLINK_BUTTON_WEBLINK="Web Link" PLG_EDITORS-XTD_WEBLINK_XML_DESCRIPTION="Displays a button to make it possible to insert web links into an Article. Displays a popup allowing you to choose the web link." PK]��\ju'��0language/en-GB/en-GB.plg_editors-xtd_weblink.ininu&1i�; Joomla! Project ; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved. ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 PLG_EDITORS-XTD_WEBLINK="Button - Web Link" PLG_EDITORS-XTD_WEBLINK_BUTTON_WEBLINK="Web Link" PLG_EDITORS-XTD_WEBLINK_XML_DESCRIPTION="Displays a button to make it possible to insert web links into an Article. Displays a popup allowing you to choose the web link." PK]��\G����.language/en-GB/plg_editors-xtd_weblink.sys.ininu�[���; Joomla! Project ; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved. ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 PLG_EDITORS-XTD_WEBLINK="Button - Web Link" PLG_EDITORS-XTD_WEBLINK_XML_DESCRIPTION="Displays a button to make it possible to insert web links into an Article. Displays a popup allowing you to choose the web link." PK]��\G����4language/en-GB/en-GB.plg_editors-xtd_weblink.sys.ininu&1i�; Joomla! Project ; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved. ; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 PLG_EDITORS-XTD_WEBLINK="Button - Web Link" PLG_EDITORS-XTD_WEBLINK_XML_DESCRIPTION="Displays a button to make it possible to insert web links into an Article. Displays a popup allowing you to choose the web link." PK]��\a��bbweblink.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?> <extension version="3.7" type="plugin" group="editors-xtd" method="upgrade"> <name>plg_editors-xtd_weblink</name> <author>Joomla! Project</author> <creationDate>2025-04-02</creationDate> <copyright>Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved.</copyright> <license>GNU General Public License version 2 or later; see LICENSE.txt</license> <authorEmail>admin@joomla.org</authorEmail> <authorUrl>www.joomla.org</authorUrl> <version>4.4.0</version> <description>PLG_EDITORS-XTD_WEBLINK_XML_DESCRIPTION</description> <namespace path="src">Joomla\Plugin\EditorsXtd\Weblink</namespace> <files> <folder>language</folder> <folder plugin="weblink">services</folder> <folder>src</folder> <file>weblink.xml</file> </files> <languages folder="language"> </languages> </extension> PK]��\V�&��services/provider.phpnu�[���<?php /** * @package Joomla.Plugin * @subpackage Editors-xtd.article * * @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects use Joomla\CMS\Extension\PluginInterface; use Joomla\CMS\Factory; use Joomla\CMS\Plugin\PluginHelper; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Plugin\EditorsXtd\Weblink\Extension\Weblink; return new class () implements ServiceProviderInterface { /** * Registers the service provider with a DI container. * * @param Container $container The DI container. * * @return void * * @since __DEPLOY_VERSION__ */ public function register(Container $container) { $container->set( PluginInterface::class, function (Container $container) { $app = Factory::getApplication(); $dispatcher = $container->get(DispatcherInterface::class); return new Weblink( $dispatcher, (array) PluginHelper::getPlugin('editors-xtd', 'weblink'), $app ); } ); } }; PK]��\�'�U��src/Extension/Weblink.phpnu�[���PK]��\ju'��*language/en-GB/plg_editors-xtd_weblink.ininu�[���PK]��\ju'��0ilanguage/en-GB/en-GB.plg_editors-xtd_weblink.ininu&1i�PK]��\G����.�language/en-GB/plg_editors-xtd_weblink.sys.ininu�[���PK]��\G����4�language/en-GB/en-GB.plg_editors-xtd_weblink.sys.ininu&1i�PK]��\a��bbweblink.xmlnu&1i�PK]��\V�&���services/provider.phpnu�[���PK��#
/home/opticamezl/www/newok/language/../cache/./../api/../api/../tmp/../cli/../cli/../weblink.zip