From dff34b73697b22a07db976f1f48009ad987ce035 Mon Sep 17 00:00:00 2001 From: Benjamin Trenkle Date: Wed, 17 Apr 2019 15:52:24 +0200 Subject: [PATCH 01/11] Fix articles view with workflow stage change (#24621) --- .../js/admin-articles-workflow-buttons.es6.js | 24 +++++++++---------- .../joomla-field-fancy-select.w-c.es6.js | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/build/media_source/com_content/js/admin-articles-workflow-buttons.es6.js b/build/media_source/com_content/js/admin-articles-workflow-buttons.es6.js index acff801d26130..81ac73283f39a 100644 --- a/build/media_source/com_content/js/admin-articles-workflow-buttons.es6.js +++ b/build/media_source/com_content/js/admin-articles-workflow-buttons.es6.js @@ -152,9 +152,9 @@ Joomla.toggleAllNextElements = (element, className) => { } } - publishBtn.addEventListener('click', (e) => { - if (e.target.classList.contains('disabled')) { - e.stopPropagation(); + publishBtn.parentElement.addEventListener('click', (e) => { + if (publishBtn.classList.contains('disabled')) { + e.stopImmediatePropagation(); Joomla.renderMessages({ error: [Joomla.JText._('COM_CONTENT_ERROR_CANNOT_PUBlISH')] }); } else { @@ -162,9 +162,9 @@ Joomla.toggleAllNextElements = (element, className) => { } }); - unpublishBtn.addEventListener('click', (e) => { - if (e.target.classList.contains('disabled')) { - e.stopPropagation(); + unpublishBtn.parentElement.addEventListener('click', (e) => { + if (unpublishBtn.classList.contains('disabled')) { + e.stopImmediatePropagation(); Joomla.renderMessages({ error: [Joomla.JText._('COM_CONTENT_ERROR_CANNOT_UNPUBlISH')] }); } else { @@ -172,9 +172,9 @@ Joomla.toggleAllNextElements = (element, className) => { } }); - archiveBtn.addEventListener('click', (e) => { - if (e.target.classList.contains('disabled')) { - e.stopPropagation(); + archiveBtn.parentElement.addEventListener('click', (e) => { + if (archiveBtn.classList.contains('disabled')) { + e.stopImmediatePropagation(); Joomla.renderMessages({ error: [Joomla.JText._('COM_CONTENT_ERROR_CANNOT_ARCHIVE')] }); } else { @@ -182,9 +182,9 @@ Joomla.toggleAllNextElements = (element, className) => { } }); - trashBtn.addEventListener('click', (e) => { - if (e.target.classList.contains('disabled')) { - e.stopPropagation(); + trashBtn.parentElement.addEventListener('click', (e) => { + if (trashBtn.classList.contains('disabled')) { + e.stopImmediatePropagation(); Joomla.renderMessages({ error: [Joomla.JText._('COM_CONTENT_ERROR_CANNOT_TRASH')] }); } else { diff --git a/build/media_source/system/js/fields/joomla-field-fancy-select.w-c.es6.js b/build/media_source/system/js/fields/joomla-field-fancy-select.w-c.es6.js index 30fd144c8551f..4d2f98eebf0de 100644 --- a/build/media_source/system/js/fields/joomla-field-fancy-select.w-c.es6.js +++ b/build/media_source/system/js/fields/joomla-field-fancy-select.w-c.es6.js @@ -141,7 +141,7 @@ window.customElements.define('joomla-field-fancy-select', class extends HTMLElem // Handle remote search if (this.remoteSearch && this.url) { // Cache existing - this.choicesInstance.presetChoices.forEach((choiceItem) => { + this.choicesInstance.config.choices.forEach((choiceItem) => { this.choicesCache[choiceItem.value] = choiceItem.label; }); From 97634675a1cc931604ee8672167391370edf6514 Mon Sep 17 00:00:00 2001 From: George Wilson Date: Wed, 17 Apr 2019 14:54:48 +0100 Subject: [PATCH 02/11] Remove role="button" from installer. Ref #23737 (#24620) Removes a redundant role attribute. These are links and are not acting like buttons --- installation/tmpl/remove/default.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installation/tmpl/remove/default.php b/installation/tmpl/remove/default.php index b76c9d3a0b3ec..36eaabdea8ee1 100644 --- a/installation/tmpl/remove/default.php +++ b/installation/tmpl/remove/default.php @@ -215,8 +215,8 @@ class="btn btn-primary"

- - + +
From 8cb966603727f754a2be3fbff5128b6c8696999a Mon Sep 17 00:00:00 2001 From: Hard!k 4garwal Date: Wed, 17 Apr 2019 19:52:14 +0530 Subject: [PATCH 03/11] remove redundant title attribute (#24625) --- installation/tmpl/remove/default.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installation/tmpl/remove/default.php b/installation/tmpl/remove/default.php index 36eaabdea8ee1..a7bcfcdbbfdcf 100644 --- a/installation/tmpl/remove/default.php +++ b/installation/tmpl/remove/default.php @@ -215,8 +215,8 @@ class="btn btn-primary"

- - + +
From 383bba882ba381dbf32bdf9e83c58a0a317ff38d Mon Sep 17 00:00:00 2001 From: SharkyKZ Date: Wed, 17 Apr 2019 17:23:52 +0300 Subject: [PATCH 04/11] [4.0][com_users] Correct path to form (#24603) --- administrator/components/com_users/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/administrator/components/com_users/config.xml b/administrator/components/com_users/config.xml index 81c25c807b662..dede67637a874 100644 --- a/administrator/components/com_users/config.xml +++ b/administrator/components/com_users/config.xml @@ -122,7 +122,7 @@ description="COM_USERS_CONFIG_FIELD_DOMAINS_DESC" multiple="true" layout="joomla.form.field.subform.repeatable-table" - formsource="administrator/components/com_users/models/forms/config_domain.xml" + formsource="administrator/components/com_users/forms/config_domain.xml" /> From 78a09e47b5ee2218a07e3e1d8acaf3e116ad9db3 Mon Sep 17 00:00:00 2001 From: SharkyKZ Date: Thu, 18 Apr 2019 11:44:36 +0300 Subject: [PATCH 05/11] [4.0][com_fields] Namespace field layout field (#24632) --- .../{fieldlayout.php => FieldLayoutField.php} | 37 +++++++++++-------- .../components/com_fields/forms/field.xml | 3 +- 2 files changed, 24 insertions(+), 16 deletions(-) rename administrator/components/com_fields/Field/{fieldlayout.php => FieldLayoutField.php} (71%) diff --git a/administrator/components/com_fields/Field/fieldlayout.php b/administrator/components/com_fields/Field/FieldLayoutField.php similarity index 71% rename from administrator/components/com_fields/Field/fieldlayout.php rename to administrator/components/com_fields/Field/FieldLayoutField.php index eb2a449ff5a46..d7f52fed6fb98 100644 --- a/administrator/components/com_fields/Field/fieldlayout.php +++ b/administrator/components/com_fields/Field/FieldLayoutField.php @@ -7,9 +7,16 @@ * @license GNU General Public License version 2 or later; see LICENSE.txt */ +namespace Joomla\Component\Fields\Administrator\Field; + defined('_JEXEC') or die; -jimport('joomla.filesystem.folder'); +use Joomla\CMS\Factory; +use Joomla\CMS\Filesystem\Folder; +use Joomla\CMS\Filesystem\Path; +use Joomla\CMS\Form\FormField; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Language\Text; /** * Form Field to display a list of the layouts for a field from @@ -17,7 +24,7 @@ * * @since 3.9.0 */ -class JFormFieldFieldlayout extends JFormField +class FieldLayoutField extends FormField { /** * The form field type. @@ -41,7 +48,7 @@ protected function getInput() if ($extension) { // Get the database object and a new query object. - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); // Build the query. @@ -56,7 +63,7 @@ protected function getInput() $templates = $db->loadObjectList('element'); // Build the search paths for component layouts. - $component_path = JPath::clean(JPATH_SITE . '/components/' . $extension . '/layouts/field'); + $component_path = Path::clean(JPATH_SITE . '/components/' . $extension . '/layouts/field'); // Prepare array of component layouts $component_layouts = array(); @@ -65,15 +72,15 @@ protected function getInput() $groups = array(); // Add "Use Default" - $groups[]['items'][] = JHtml::_('select.option', '', JText::_('JOPTION_USE_DEFAULT')); + $groups[]['items'][] = HTMLHelper::_('select.option', '', Text::_('JOPTION_USE_DEFAULT')); // Add the layout options from the component path. - if (is_dir($component_path) && ($component_layouts = JFolder::files($component_path, '^[^_]*\.php$', false, true))) + if (is_dir($component_path) && ($component_layouts = Folder::files($component_path, '^[^_]*\.php$', false, true))) { // Create the group for the component $groups['_'] = array(); $groups['_']['id'] = $this->id . '__'; - $groups['_']['text'] = JText::sprintf('JOPTION_FROM_COMPONENT'); + $groups['_']['text'] = Text::sprintf('JOPTION_FROM_COMPONENT'); $groups['_']['items'] = array(); foreach ($component_layouts as $i => $file) @@ -87,7 +94,7 @@ protected function getInput() continue; } - $groups['_']['items'][] = JHtml::_('select.option', $value, $value); + $groups['_']['items'][] = HTMLHelper::_('select.option', $value, $value); } } @@ -98,9 +105,9 @@ protected function getInput() { $files = array(); $template_paths = array( - JPath::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/' . $extension . '/field'), - JPath::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/com_fields/field'), - JPath::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/field'), + Path::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/' . $extension . '/field'), + Path::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/com_fields/field'), + Path::clean(JPATH_SITE . '/templates/' . $template->element . '/html/layouts/field'), ); // Add the layout options from the template paths. @@ -108,7 +115,7 @@ protected function getInput() { if (is_dir($template_path)) { - $files = array_merge($files, JFolder::files($template_path, '^[^_]*\.php$', false, true)); + $files = array_merge($files, Folder::files($template_path, '^[^_]*\.php$', false, true)); } } @@ -128,14 +135,14 @@ protected function getInput() // Create the group for the template $groups[$template->name] = array(); $groups[$template->name]['id'] = $this->id . '_' . $template->element; - $groups[$template->name]['text'] = JText::sprintf('JOPTION_FROM_TEMPLATE', $template->name); + $groups[$template->name]['text'] = Text::sprintf('JOPTION_FROM_TEMPLATE', $template->name); $groups[$template->name]['items'] = array(); foreach ($files as $file) { // Add an option to the template group $value = basename($file, '.php'); - $groups[$template->name]['items'][] = JHtml::_('select.option', $value, $value); + $groups[$template->name]['items'][] = HTMLHelper::_('select.option', $value, $value); } } } @@ -152,7 +159,7 @@ protected function getInput() $selected = array($this->value); // Add a grouped list - $html[] = JHtml::_( + $html[] = HTMLHelper::_( 'select.groupedlist', $groups, $this->name, array('id' => $this->id, 'group.id' => 'id', 'list.attr' => $attr, 'list.select' => $selected) ); diff --git a/administrator/components/com_fields/forms/field.xml b/administrator/components/com_fields/forms/field.xml index e469b812752e2..c9ec9e89dc343 100644 --- a/administrator/components/com_fields/forms/field.xml +++ b/administrator/components/com_fields/forms/field.xml @@ -292,9 +292,10 @@ Date: Thu, 18 Apr 2019 15:29:33 +0530 Subject: [PATCH 06/11] [4.0] Fixed workflow conditions in search plugin (#24494) --- plugins/search/content/content.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/search/content/content.php b/plugins/search/content/content.php index cebddd5067fe1..3c41d6615c871 100644 --- a/plugins/search/content/content.php +++ b/plugins/search/content/content.php @@ -14,6 +14,7 @@ use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Router\Route; +use Joomla\Component\Content\Administrator\Extension\ContentComponent; use Joomla\Component\Search\Administrator\Helper\SearchHelper; /** @@ -289,10 +290,13 @@ public function onContentSearch($text, $phrase = '', $ordering = '', $areas = nu ->select($db->quote('2') . ' AS browsernav') ->from($db->quoteName('#__content', 'a')) ->innerJoin($db->quoteName('#__categories', 'c') . ' ON c.id = a.catid') - ->join('LEFT', '#__workflow_stages AS ws ON ws.id = state') + ->join('LEFT', '#__workflow_associations AS wa ON wa.item_id = a.id') + ->join('INNER', '#__workflow_stages AS ws ON ws.id = wa.stage_id') + ->where($db->quoteName('wa.extension') . '=' . $db->quote('com_content')) ->where( - '(' . $where . ') AND ws.condition=1 AND c.published = 1 AND a.access IN (' . $groups . ') ' - . 'AND c.access IN (' . $groups . ')' + '(' . $where . ') AND c.published = 1 AND a.access IN (' . $groups . ') ' + . 'AND (ws.condition = ' . ContentComponent::CONDITION_PUBLISHED . ') ' + . 'AND c.access IN (' . $groups . ') ' . 'AND (a.publish_up = ' . $db->quote($nullDate) . ' OR a.publish_up <= ' . $db->quote($now) . ') ' . 'AND (a.publish_down = ' . $db->quote($nullDate) . ' OR a.publish_down >= ' . $db->quote($now) . ')' ) From 7b9e1fcfbc19923a862d1d0794b4d994ab884aef Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Thu, 18 Apr 2019 12:32:05 +0200 Subject: [PATCH 07/11] Remove the deprecated loadByPsr0 function in the JLoader class (#22291) --- libraries/loader.php | 69 -------------------------------------------- 1 file changed, 69 deletions(-) diff --git a/libraries/loader.php b/libraries/loader.php index 99c222462826b..57def3cc13ff7 100644 --- a/libraries/loader.php +++ b/libraries/loader.php @@ -510,7 +510,6 @@ public static function setup($enablePsr = true, $enablePrefixes = true, $enableC if ($enablePsr) { // Register the PSR based autoloader. - spl_autoload_register(array('JLoader', 'loadByPsr0')); spl_autoload_register(array('JLoader', 'loadByPsr4')); spl_autoload_register(array('JLoader', 'loadByAlias')); } @@ -584,74 +583,6 @@ public static function loadByPsr4($class) return false; } - /** - * Method to autoload classes that are namespaced to the PSR-0 standard. - * - * @param string $class The fully qualified class name to autoload. - * - * @return boolean True on success, false otherwise. - * - * @since 3.2.0 - * - * @deprecated 4.0 this method will be removed - */ - public static function loadByPsr0($class) - { - $class = self::stripFirstBackslash($class); - - // Find the location of the last NS separator. - $pos = strrpos($class, '\\'); - - // If one is found, we're dealing with a NS'd class. - if ($pos !== false) - { - $classPath = str_replace('\\', DIRECTORY_SEPARATOR, substr($class, 0, $pos)) . DIRECTORY_SEPARATOR; - $className = substr($class, $pos + 1); - } - // If not, no need to parse path. - else - { - $classPath = null; - $className = $class; - } - - $classPath .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; - - // Loop through registered namespaces until we find a match. - foreach (self::$namespaces['psr0'] as $ns => $paths) - { - if (strpos($class, $ns) === 0) - { - // Loop through paths registered to this namespace until we find a match. - foreach ($paths as $path) - { - $classFilePath = realpath($path . DIRECTORY_SEPARATOR . $classPath); - - // We do not allow files outside the namespace root to be loaded - if (strpos($classFilePath, realpath($path)) !== 0) - { - continue; - } - - // We check for class_exists to handle case-sensitive file systems - if (file_exists($classFilePath) && !class_exists($class, false)) - { - $found = (bool) include_once $classFilePath; - - if ($found) - { - self::loadAliasFor($class); - } - - return $found; - } - } - } - } - - return false; - } - /** * Method to autoload classes that have been aliased using the registerAlias method. * From 1167980101c76d5976c8d507c522206168d1b5dd Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Thu, 18 Apr 2019 13:36:04 +0200 Subject: [PATCH 08/11] [4.0] Removing special layouts for com_contact (#23829) --- .../components/com_contact/config.xml | 11 - .../components/com_contact/forms/contact.xml | 11 - .../language/en-GB/en-GB.com_contact.ini | 4 - .../com_contact/tmpl/categories/default.xml | 202 +++++++++--------- .../com_contact/tmpl/category/default.xml | 10 - .../com_contact/tmpl/contact/default.php | 144 +------------ .../com_contact/tmpl/contact/default.xml | 10 - .../tmpl/contact/default_links.php | 18 +- .../contact/default_user_custom_fields.php | 15 +- .../com_contact/tmpl/featured/default.xml | 171 +++++++-------- 10 files changed, 183 insertions(+), 413 deletions(-) diff --git a/administrator/components/com_contact/config.xml b/administrator/components/com_contact/config.xml index 3d9e87cbd20cc..4b85b2792cd7e 100644 --- a/administrator/components/com_contact/config.xml +++ b/administrator/components/com_contact/config.xml @@ -59,17 +59,6 @@ - - - - - - JSHOW - - - - - -
-
- JSHOW - - J5 - JSHOW - JSHOW -
- - JSHOW - JSHOW - JSHOW - J5 - JSHOW - JSHOW -
- @@ -200,8 +200,8 @@ - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW -
- - - - - - COM_CONTACT_FIELD_VALUE_WITH_LINK - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JALL - JSHOW - - - - -
- JSHOW - JSHOW - - - - JYES - JYES - - - - - - - item->event->beforeDisplayContent; ?> - get('presentation_style'); ?> - - - params->get('show_info', 1)) : ?> - - 'basic-details')); ?> - - - - 'basic-details')); ?> - - - - ' . JText::_('COM_CONTACT_DETAILS') . ''; ?> - + ' . JText::_('COM_CONTACT_DETAILS') . ''; ?> item->image && $tparams->get('show_image')) : ?>
@@ -110,117 +96,28 @@ - - - - - - get('show_email_form') && ($this->item->email_to || $this->item->user_id)) : ?> - - 'display-form')); - $accordionStarted = true; - } - ?> - - - 'display-form')); - $tabSetStarted = true; - } - ?> - - - ' . JText::_('COM_CONTACT_EMAIL_FORM') . ''; ?> - + ' . JText::_('COM_CONTACT_EMAIL_FORM') . ''; ?> loadTemplate('form'); ?> - - - - - - get('show_links')) : ?> - - - 'display-links')); ?> - - - - - 'display-links')); ?> - - - loadTemplate('links'); ?> get('show_articles') && $this->item->user_id && $this->item->articles) : ?> - - 'display-articles')); - $accordionStarted = true; - } - ?> - - - 'display-articles')); - $tabSetStarted = true; - } - ?> - - - ' . JText::_('JGLOBAL_ARTICLES') . ''; ?> - + ' . JText::_('JGLOBAL_ARTICLES') . ''; ?> loadTemplate('articles'); ?> - - - - - - get('show_profile') && $this->item->user_id && PluginHelper::isEnabled('user', 'profile')) : ?> - - 'display-profile')); - $accordionStarted = true; - } - ?> - - - 'display-profile')); - $tabSetStarted = true; - } - ?> - - - ' . JText::_('COM_CONTACT_PROFILE') . ''; ?> - + ' . JText::_('COM_CONTACT_PROFILE') . ''; ?> loadTemplate('profile'); ?> - - - - - - get('show_user_custom_fields') && $this->contactUser) : ?> @@ -228,25 +125,7 @@ item->misc && $tparams->get('show_misc')) : ?> - - 'display-misc')); - $accordionStarted = true; - } - ?> - - - 'display-misc')); - $tabSetStarted = true; - } - ?> - - - ' . JText::_('COM_CONTACT_OTHER_INFORMATION') . ''; ?> - + ' . JText::_('COM_CONTACT_OTHER_INFORMATION') . ''; ?>
@@ -262,19 +141,6 @@
- - - - - - - - - - - - - item->event->afterDisplayContent; ?>
diff --git a/components/com_contact/tmpl/contact/default.xml b/components/com_contact/tmpl/contact/default.xml index ac004da96f72e..17c9649208857 100644 --- a/components/com_contact/tmpl/contact/default.xml +++ b/components/com_contact/tmpl/contact/default.xml @@ -34,16 +34,6 @@
- - - - - - -params->get('presentation_style') === 'sliders') : ?> - - -params->get('presentation_style') === 'tabs') : ?> - - -params->get('presentation_style') === 'plain') : ?> - ' . Text::_('COM_CONTACT_LINKS') . ''; ?> - +' . Text::_('COM_CONTACT_LINKS') . ''; ?> - -params->get('presentation_style') === 'sliders') : ?> - - -params->get('presentation_style') === 'tabs') : ?> - - diff --git a/components/com_contact/tmpl/contact/default_user_custom_fields.php b/components/com_contact/tmpl/contact/default_user_custom_fields.php index 8b512f71bf6c5..4dd327dc008d8 100644 --- a/components/com_contact/tmpl/contact/default_user_custom_fields.php +++ b/components/com_contact/tmpl/contact/default_user_custom_fields.php @@ -14,7 +14,6 @@ use Joomla\CMS\Language\Text; $params = $this->item->params; -$presentation_style = $params->get('presentation_style'); $displayGroups = $params->get('show_user_custom_fields'); $userFieldGroups = array(); @@ -36,13 +35,7 @@ $fields) : ?> - - - - - - ' . ($groupTitle ?: Text::_('COM_CONTACT_USER_FIELDS')) . ''; ?> - + ' . ($groupTitle ?: Text::_('COM_CONTACT_USER_FIELDS')) . ''; ?>
@@ -59,10 +52,4 @@
- - - - - - diff --git a/components/com_contact/tmpl/featured/default.xml b/components/com_contact/tmpl/featured/default.xml index 9cf0f7a80fa0a..ff5be53b93863 100644 --- a/components/com_contact/tmpl/featured/default.xml +++ b/components/com_contact/tmpl/featured/default.xml @@ -17,15 +17,15 @@
- - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - - - - - - - JSHOW - JSHOW - - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JSHOW - JALL - JSHOW - - - - - - JSHOW - JSHOW - - - - JYES - JYES - Date: Thu, 18 Apr 2019 13:24:35 +0100 Subject: [PATCH 09/11] Fix being unable to save the user profile (#24633) --- composer.json | 5 +++-- libraries/src/Form/Form.php | 4 ++-- plugins/system/actionlogs/actionlogs.php | 1 - 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 8ff0ba71f3c5a..696b987857dc4 100644 --- a/composer.json +++ b/composer.json @@ -87,7 +87,7 @@ "symfony/debug": "3.4.*", "symfony/ldap": "3.4.*", "symfony/options-resolver": "3.4.*", - "symfony/polyfill-php71": "~1.10", + "symfony/polyfill-php71": "~1.10", "symfony/polyfill-php73": "^1.10", "symfony/web-link": "3.4.*", "symfony/yaml": "3.4.*", @@ -95,7 +95,8 @@ "maximebf/debugbar": "^1.15", "tobscure/json-api": "^0.4.1", "willdurand/negotiation": "^2.3", - "ext-json": "*" + "ext-json": "*", + "ext-simplexml": "*" }, "require-dev": { "phpunit/phpunit": "~6.0", diff --git a/libraries/src/Form/Form.php b/libraries/src/Form/Form.php index 4080d8ed6d619..57ccfb045287a 100644 --- a/libraries/src/Form/Form.php +++ b/libraries/src/Form/Form.php @@ -1211,11 +1211,11 @@ public function validate($data, $group = null) $key = $attrGroup ? $attrGroup . '.' . $name : $name; - $fieldObj = $this->loadField($field, $group); + $fieldObj = $this->loadField($field, $attrGroup); if ($fieldObj) { - $valid = $fieldObj->validate($input->get($key), $group, $input); + $valid = $fieldObj->validate($input->get($key), $attrGroup, $input); // Check for an error. if ($valid instanceof \Exception) diff --git a/plugins/system/actionlogs/actionlogs.php b/plugins/system/actionlogs/actionlogs.php index 67d0e603f6e12..59cd0d4288b2c 100644 --- a/plugins/system/actionlogs/actionlogs.php +++ b/plugins/system/actionlogs/actionlogs.php @@ -79,7 +79,6 @@ public function onContentPrepareForm($form, $data) $allowedFormNames = array( 'com_users.profile', - 'com_admin.profile', 'com_users.user', ); From 895eb401f527cc7d30ce9e2876bb47b8de800e06 Mon Sep 17 00:00:00 2001 From: Benjamin Trenkle Date: Thu, 18 Apr 2019 15:01:15 +0200 Subject: [PATCH 10/11] [4.0] Tinymce 5.0 migration (#24110) --- .../en-GB/en-GB.plg_editors_tinymce.ini | 4 +- build/build-modules-js/init.es6.js | 4 +- .../css/tinymce-builder.css | 30 -- .../js/tinymce-builder.es5.js | 316 ------------ .../js/tinymce-builder.es6.js | 482 ++++++++++++++++++ .../plg_editors_tinymce/js/tinymce.es6.js | 23 +- .../scss/tinymce-builder.scss | 37 ++ .../editors/tinymce/field/tinymcebuilder.php | 35 +- package-lock.json | 6 +- package.json | 2 +- plugins/editors-xtd/article/article.php | 2 + plugins/editors-xtd/contact/contact.php | 3 + plugins/editors-xtd/fields/fields.php | 6 + plugins/editors-xtd/image/image.php | 3 + plugins/editors-xtd/menu/menu.php | 3 + plugins/editors-xtd/module/module.php | 2 + plugins/editors-xtd/pagebreak/pagebreak.php | 3 + plugins/editors-xtd/readmore/readmore.php | 1 + plugins/editors/tinymce/field/skins.php | 2 +- plugins/editors/tinymce/form/setoptions.xml | 1 + plugins/editors/tinymce/tinymce.php | 37 +- plugins/editors/tinymce/tinymce.xml | 10 +- 22 files changed, 616 insertions(+), 396 deletions(-) delete mode 100644 build/media_source/plg_editors_tinymce/css/tinymce-builder.css delete mode 100644 build/media_source/plg_editors_tinymce/js/tinymce-builder.es5.js create mode 100644 build/media_source/plg_editors_tinymce/js/tinymce-builder.es6.js create mode 100644 build/media_source/plg_editors_tinymce/scss/tinymce-builder.scss diff --git a/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini b/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini index 462f8f47a8352..c09e78cba8ba5 100644 --- a/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini +++ b/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini @@ -38,8 +38,8 @@ PLG_TINY_FIELD_RESIZE_HORIZONTAL_LABEL="Horizontal Resizing" PLG_TINY_FIELD_RESIZING_LABEL="Resizing" PLG_TINY_FIELD_SETACCESS_LABEL="Assign this Set to" PLG_TINY_FIELD_SKIN_ADMIN_LABEL="Administrator Skin" -PLG_TINY_FIELD_SKIN_INFO_DESC="Copy your new skins to: /media/editors/tinymce/skins." -PLG_TINY_FIELD_SKIN_INFO_LABEL="For customised skins go to: Skin Creator" +PLG_TINY_FIELD_SKIN_INFO_DESC="Copy your new skins to: /media/editors/tinymce/skins/ui." +PLG_TINY_FIELD_SKIN_INFO_LABEL="For customised skins go to: Skin Creator" PLG_TINY_FIELD_SKIN_LABEL="Site Skin" PLG_TINY_FIELD_URLS_LABEL="URLs" PLG_TINY_FIELD_VALIDELEMENTS_DESC="Defines which elements will stay in the edited text when the editor saves (the default rule set for this option is a mixture of the full HTML5 and HTML4 specification)." diff --git a/build/build-modules-js/init.es6.js b/build/build-modules-js/init.es6.js index b34e259d9e467..11cb068c5ff1d 100644 --- a/build/build-modules-js/init.es6.js +++ b/build/build-modules-js/init.es6.js @@ -226,9 +226,9 @@ const copyFiles = (options) => { Fs.writeFileSync(`${RootPath}/plugins/editors/tinymce/tinymce.xml`, tinyXml, { encoding: 'UTF-8' }); // Remove that sourcemap... - let tinyWrongMap = Fs.readFileSync(`${RootPath}/media/vendor/tinymce/skins/lightgray/skin.min.css`, { encoding: 'UTF-8' }); + let tinyWrongMap = Fs.readFileSync(`${RootPath}/media/vendor/tinymce/skins/ui/oxide/skin.min.css`, { encoding: 'UTF-8' }); tinyWrongMap = tinyWrongMap.replace('/*# sourceMappingURL=skin.min.css.map */', ''); - Fs.writeFileSync(`${RootPath}/media/vendor/tinymce/skins/lightgray/skin.min.css`, tinyWrongMap, { encoding: 'UTF-8' }); + Fs.writeFileSync(`${RootPath}/media/vendor/tinymce/skins/ui/oxide/skin.min.css`, tinyWrongMap, { encoding: 'UTF-8' }); } else { ['js', 'css', 'filesExtra'].forEach((type) => { if (!vendor[type]) return; diff --git a/build/media_source/plg_editors_tinymce/css/tinymce-builder.css b/build/media_source/plg_editors_tinymce/css/tinymce-builder.css deleted file mode 100644 index a9ad10dabdf8c..0000000000000 --- a/build/media_source/plg_editors_tinymce/css/tinymce-builder.css +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -#joomla-tinymce-builder { - margin-left: -220px; -} -.mce-menubar, -.mce-panel { - min-height: 18px; - border-bottom: 1px solid rgba(217,217,217,.52); - white-space: normal; -} -.mce-tinymce { - margin-bottom: 20px; - clear: both; -} -.mce-panel .drop-area-highlight { - background-color: #d0d0d0; -} -.mce-panel .mce-btn.ui-state-highlight { - height: 28px; - width: 40px; - background-color: #409740; - border: 1px solid #f0f0f0; -} -.timymce-builder-toolbar .mce-btn.ui-state-highlight { - height: 22px; -} diff --git a/build/media_source/plg_editors_tinymce/js/tinymce-builder.es5.js b/build/media_source/plg_editors_tinymce/js/tinymce-builder.es5.js deleted file mode 100644 index 6a1fd023ed33d..0000000000000 --- a/build/media_source/plg_editors_tinymce/js/tinymce-builder.es5.js +++ /dev/null @@ -1,316 +0,0 @@ -/** - * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -;(function($) { - "use strict"; - - /** - * Fake TinyMCE object to allow to use TinyMCE translation for the button labels - * - * @since 3.7.0 - */ - window.tinymce = { - langCode: 'en', - langStrings: {}, - addI18n: function (code, strings){ - this.langCode = code; - this.langStrings = strings || {}; - }, - translate: function (string){ - return this.langStrings[string] ? this.langStrings[string] : string; - } - }; - - /** - * Joomla TinyMCE Builder - * - * @param {HTMLElement} container - * @param {Object} options - * @constructor - * - * @since 3.7.0 - */ - var JoomlaTinyMCEBuilder = function(container, options) { - this.$container = $(container); - this.options = options; - - // Find source containers - this.$sourceMenu = this.$container.find('.timymce-builder-menu.source'); - this.$sourceToolbar = this.$container.find('.timymce-builder-toolbar.source'); - - // Find target containers - this.$targetMenu = this.$container.find('.timymce-builder-menu.target'); - this.$targetToolbar = this.$container.find('.timymce-builder-toolbar.target'); - - // Render Source elements - this.$sourceMenu.each(function(i, element){ - this.renderBar(element, 'menu'); - }.bind(this)); - this.$sourceToolbar.each(function(i, element){ - this.renderBar(element, 'toolbar'); - }.bind(this)); - - // Render Target elements - this.$targetMenu.each(function(i, element){ - this.renderBar(element, 'menu', null, true); - }.bind(this)); - this.$targetToolbar.each(function(i, element){ - this.renderBar(element, 'toolbar', null, true); - }.bind(this)); - - // Set up "drag&drop" stuff - var $copyHelper = null, removeIntent = false, self = this; - this.$sourceMenu.sortable({ - connectWith: this.$targetMenu, - items: '.mce-btn', - cancel: '', - placeholder: 'mce-btn ui-state-highlight', - start: function(event, ui) { - self.$targetMenu.addClass('drop-area-highlight'); - }, - helper: function(event, el) { - $copyHelper = el.clone().insertAfter(el); - return el; - }, - stop: function() { - $copyHelper && $copyHelper.remove(); - self.$targetMenu.removeClass('drop-area-highlight'); - } - }); - - this.$sourceToolbar.sortable({ - connectWith: this.$targetToolbar, - items: '.mce-btn', - cancel: '', - placeholder: 'mce-btn ui-state-highlight', - start: function(event, ui) { - self.$targetToolbar.addClass('drop-area-highlight'); - }, - helper: function(event, el) { - $copyHelper = el.clone().insertAfter(el); - return el; - }, - stop: function() { - $copyHelper && $copyHelper.remove(); - self.$targetToolbar.removeClass('drop-area-highlight'); - } - }); - - $().add(this.$targetMenu).add(this.$targetToolbar).sortable({ - items: '.mce-btn', - cancel: '', - placeholder: 'mce-btn ui-state-highlight', - receive: function(event, ui) { - $copyHelper = null; - var $el = ui.item, $cont = $(this); - self.appendInput($el, $cont.data('group'), $cont.data('set')) - }, - over: function (event, ui) { - removeIntent = false; - }, - out: function (event, ui) { - removeIntent = true; - }, - beforeStop: function (event, ui) { - if(removeIntent){ - ui.item.remove(); - } - } - }); - - // Bind actions buttons - this.$container.on('click', '.button-action', function(event){ - var $btn = $(event.target), action = $btn.data('action'), options = $btn.data(); - - if (this[action]) { - this[action].call(this, options); - } else { - throw new Error('Unsupported action ' + action); - } - }.bind(this)); - - }; - - /** - * Render the toolbar/menubar - * - * @param {HTMLElement} container The toolbar container - * @param {String} type The type toolbar or menu - * @param {Array|null} value The value - * @param {Boolean} withInput Whether append input - * - * @since 3.7.0 - */ - JoomlaTinyMCEBuilder.prototype.renderBar = function(container, type, value, withInput) { - var $container = $(container), - group = $container.data('group'), - set = $container.data('set'), - items = type === 'menu' ? this.options.menus : this.options.buttons, - value = value ? value : ($container.data('value') || []), - item, name, $btn; - - for ( var i = 0, l = value.length; i < l; i++ ) { - name = value[i]; - item = items[name]; - - if (!item) { - continue; - } - - $btn = this.createButton(name, item, type); - $container.append($btn); - - // Enable tooltip - if ($btn.tooltip) { - $btn.tooltip({trigger: 'hover'}); - } - - // Add input - if (withInput) { - this.appendInput($btn, group, set); - } - } - }; - - /** - * Create the element needed for renderBar() - * @param {String} name - * @param {Object} info - * @param {String} type - * - * @return {jQuery} - * - * @since 3.7.0 - */ - JoomlaTinyMCEBuilder.prototype.createButton = function(name, info, type){ - var $element = $('
', { - 'class': 'mce-btn', - 'data-name': name, - 'data-toggle': 'tooltip', - 'title': tinymce.translate(info.label) - }); - var $btn = $('`; + + return $btn; + }; + + /** + * Render the toolbar/menubar + * + * @param {HTMLElement} box The toolbar container + * @param {String} type The type toolbar or menu + * @param {Array|null} value The value + * @param {Boolean} withInput Whether append input + * + * @since 3.7.0 + */ + const renderBar = (box, type, val, withInput) => { + const group = box.getAttribute('data-group'); + const set = box.getAttribute('data-set'); + const items = type === 'menu' ? options.menus : options.buttons; + const value = val || JSON.parse(box.getAttribute('data-value')) || []; + let item; + let name; + let $btn; + + for (let i = 0, l = value.length; i < l; i += 1) { + name = value[i]; + item = items[name]; + + if (item) { + $btn = createButton(name, item, type); + box.innerHTML += $btn; + + const newbutton = box.querySelector('.tox-mbtn:last-child'); + + // Enable tooltip + if (newbutton.tooltip) { + newbutton.tooltip({ trigger: 'hover' }); + } + + // Add input + if (withInput) { + appendInput(newbutton, group, set); + } + } + } + }; + + /** + * Clear the pane for specific set + * @param {Object} sets Options {set: 1} + */ + const clearPane = (sets) => { + const { set: item } = sets; + + $targetMenu.forEach((elem) => { + if (elem.getAttribute('data-set') === item) { + elem.innerHTML = ''; + } + }); + + $targetToolbar.forEach((elem) => { + if (elem.getAttribute('data-set') === item) { + elem.innerHTML = ''; + } + }); + }; + + /** + * Set Selected preset to specific set + * @param {Object} attrib Options {set: 1, preset: 'presetName'} + */ + const setPreset = (attrib) => { + const { set: item } = attrib; + const preset = options.toolbarPreset[attrib.preset] || null; + + if (!preset) { + throw new Error(`Unknown Preset "${attrib.preset}"`); + } + + clearPane(attrib); + + Object.keys(preset).forEach((group) => { + const type = group === 'menu' ? 'menu' : 'toolbar'; + + // Find correct container for current set + if (group === 'menu') { + $targetMenu.forEach((target) => { + if (target.getAttribute('data-group') === group && target.getAttribute('data-set') === item) { + renderBar(target, type, preset[group], true); + } + }); + } else { + $targetToolbar.forEach((target) => { + if (target.getAttribute('data-group') === group && target.getAttribute('data-set') === item) { + renderBar(target, type, preset[group], true); + } + }); + } + }); + }; + + // Build menu + toolbar + renderBar($sourceMenu, 'menu'); + renderBar($sourceToolbar, 'toolbar'); + + // Initialize drag & drop + /* global dragula */ + const drakeMenu = dragula([$sourceMenu], { + copy: (el, source) => source === $sourceMenu, + accepts: (el, target) => target !== $sourceMenu, + removeOnSpill: true, + }).on('drag', () => { + $targetMenu.forEach((target) => { target.classList.add('drop-area-highlight'); }); + }).on('dragend', () => { + $targetMenu.forEach((target) => { target.classList.remove('drop-area-highlight'); }); + }).on('drop', (el, target) => { + if (target !== $sourceMenu) { + appendInput(el, target.getAttribute('data-group'), target.getAttribute('data-set')); + } + }); + + $targetMenu.forEach((target) => { + renderBar(target, 'menu', null, true); + drakeMenu.containers.push(target); + }); + + const drakeToolbar = dragula([$sourceToolbar], { + copy: (el, source) => source === $sourceToolbar, + accepts: (el, target) => target !== $sourceToolbar, + removeOnSpill: true, + }).on('drag', () => { + $targetToolbar.forEach((target) => { + target.classList.add('drop-area-highlight'); + }); + }).on('dragend', () => { + $targetToolbar.forEach((target) => { + target.classList.remove('drop-area-highlight'); + }); + }).on('drop', (el, target) => { + if (target !== $sourceToolbar) { + appendInput(el, target.getAttribute('data-group'), target.getAttribute('data-set')); + } + }); + + $targetToolbar.forEach((target) => { + renderBar(target, 'toolbar', null, true); + drakeToolbar.containers.push(target); + }); + + // Bind actions buttons + const actionButtons = container.querySelectorAll('.button-action'); + + actionButtons.forEach((elem) => { + elem.addEventListener('click', (event) => { + const action = event.target.getAttribute('data-action'); + + const actionoptions = {}; + + [].forEach.call(event.target.attributes, (attrib) => { + if (/^data-/.test(attrib.name)) { + const key = attrib.name.substr(5); + + actionoptions[key] = attrib.value; + } + }); + + // Don't allow wild function calling + switch (action) { + case 'clearPane': + clearPane(actionoptions); + break; + + case 'setPreset': + setPreset(actionoptions); + break; + + default: + throw new Error(`Unsupported action: ${action}`); + } + }); + }); + }; + + Joomla.TinyMCEBuilder = TinyMCEBuilder; +})(Joomla, window); + +document.addEventListener('DOMContentLoaded', () => { + const options = Joomla.getOptions ? Joomla.getOptions('plg_editors_tinymce_builder', {}) + : (Joomla.optionsStorage.plg_editors_tinymce_builder || {}); + + const builder = document.getElementById('joomla-tinymce-builder'); + + Joomla.TinyMCEBuilder(builder, options); + + const selects = builder.querySelectorAll('.access-select'); + + // Allow to select the group only once per the set + const toggleAvailableOption = () => { + selects.forEach((select) => { + select.enableAllOptions(); + }); + + // Disable already selected options in the other selects + selects.forEach((select) => { + const values = select.value; + + selects.forEach((select1) => { + if (select === select1) { + return; + } + + values.forEach((value) => { + select1.disableByValue(value); + }); + }); + }); + }; + + window.addEventListener('load', () => toggleAvailableOption()); + + // Allow to select the group only once per the set + selects.forEach((select) => { + select.addEventListener('change', () => { + toggleAvailableOption(); + }); + }); +}); diff --git a/build/media_source/plg_editors_tinymce/js/tinymce.es6.js b/build/media_source/plg_editors_tinymce/js/tinymce.es6.js index 428159fceed17..68f5b36575689 100644 --- a/build/media_source/plg_editors_tinymce/js/tinymce.es6.js +++ b/build/media_source/plg_editors_tinymce/js/tinymce.es6.js @@ -63,17 +63,26 @@ const arr = Object.keys(options.joomlaExtButtons.names) .map(key => options.joomlaExtButtons.names[key]); + const icons = { + joomla: '', + }; + arr.forEach((xtdButton) => { const tmp = {}; tmp.text = xtdButton.name; tmp.icon = xtdButton.icon; + tmp.type = 'menuitem'; + + if (xtdButton.iconSVG) { + icons[tmp.icon] = xtdButton.iconSVG; + } if (xtdButton.href) { - tmp.onclick = () => { + tmp.onAction = () => { document.getElementById(`${xtdButton.id}Modal`).open(); }; } else { - tmp.onclick = () => { + tmp.onAction = () => { // eslint-disable-next-line no-new-func new Function(xtdButton.click)(); }; @@ -84,11 +93,15 @@ if (buttonValues.length) { options.setup = (editor) => { - editor.addButton('jxtdbuttons', { + Object.keys(icons).forEach((icon) => { + editor.ui.registry.addIcon(icon, icons[icon]); + }); + + editor.ui.registry.addSplitButton('jxtdbuttons', { type: 'menubutton', text: Joomla.JText._('PLG_TINY_CORE_BUTTONS'), - icon: 'none icon-joomla', - menu: buttonValues, + icon: 'joomla', + fetch: callback => callback(buttonValues), }); }; } diff --git a/build/media_source/plg_editors_tinymce/scss/tinymce-builder.scss b/build/media_source/plg_editors_tinymce/scss/tinymce-builder.scss new file mode 100644 index 0000000000000..89ad60be81aad --- /dev/null +++ b/build/media_source/plg_editors_tinymce/scss/tinymce-builder.scss @@ -0,0 +1,37 @@ +/** + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. + * @license GNU General Public License version 2 or later; see LICENSE.txt + */ + +#joomla-tinymce-builder { + margin-left: -220px; + .drop-area-highlight { + background-color: #d0d0d0; + } + .tox-editor-container { + > .target { + min-height: 2.5rem; + } + } +} + +// Drag & Drop Handler +.tox-mbtn.gu-mirror { + align-items: center; + background: #dee0e2; + border: 0; + border-radius: 3px; + box-shadow: none; + display: flex; + flex: 0 0 auto; + font-size: 14px; + font-style: normal; + font-weight: normal; + justify-content: center; + margin: 2px 0 3px 0; + outline: none; + overflow: hidden; + padding: 0; + text-transform: normal; + +} diff --git a/layouts/plugins/editors/tinymce/field/tinymcebuilder.php b/layouts/plugins/editors/tinymce/field/tinymcebuilder.php index 077257627eb25..2286035cced53 100644 --- a/layouts/plugins/editors/tinymce/field/tinymcebuilder.php +++ b/layouts/plugins/editors/tinymce/field/tinymcebuilder.php @@ -56,9 +56,10 @@ */ HTMLHelper::_('behavior.core'); -HTMLHelper::_('jquery.ui', array('core', 'sortable')); -HTMLHelper::_('stylesheet', 'media/vendor/tinymce/skins/lightgray/skin.min.css', array('version' => 'auto', 'relative' => false)); +HTMLHelper::_('stylesheet', 'media/vendor/tinymce/skins/ui/oxide/skin.min.css', array('version' => 'auto', 'relative' => false)); HTMLHelper::_('stylesheet', 'plg_editors_tinymce/tinymce-builder.css', array('version' => 'auto', 'relative' => true)); +HTMLHelper::_('stylesheet', 'vendor/dragula/dragula.css', array('version' => 'auto', 'relative' => true)); +HTMLHelper::_('script', 'vendor/dragula/dragula.js', array('version' => 'auto', 'relative' => true)); HTMLHelper::_('script', 'plg_editors_tinymce/tinymce-builder.js', array('version' => 'auto', 'relative' => true)); if ($languageFile) @@ -80,19 +81,15 @@

-
-
+
+
-
-
-
+
-
-
-
+
@@ -107,7 +104,7 @@ $isActive = $num === $setsAmount - 1; ?> @@ -167,17 +164,19 @@
-
-
-
+ +
+
+
-
-
diff --git a/package-lock.json b/package-lock.json index 64e9c068ad133..0242c5f695443 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8696,9 +8696,9 @@ "dev": true }, "tinymce": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-4.8.3.tgz", - "integrity": "sha512-kNEsKTqUYZRG+GTZ7tcVAktUlDeApz6d3IqnNaZXNX0CP0BsK8NPC02FCJ0EVYxdNnq6fvvknWkItmbreXD9aA==" + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-5.0.1.tgz", + "integrity": "sha512-bAKaEEtRd4BsXu6ySYflhO83Cg844LHrplcaWalbdeZjFXwkodtv3G6H1x2r6ThaOdyE4+otJtxPYlfzwyKDdw==" }, "tmp": { "version": "0.0.33", diff --git a/package.json b/package.json index e466be30a5d79..4a01bb8e4163f 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "popper.js": "^1.14.3", "punycode": "1.4.1", "skipto": "^2.0.3", - "tinymce": "4.8.3" + "tinymce": "5.0.1" }, "devDependencies": { "@babel/core": "^7.4.0", diff --git a/plugins/editors-xtd/article/article.php b/plugins/editors-xtd/article/article.php index 504fafcc11103..21dbdf70dbdbe 100644 --- a/plugins/editors-xtd/article/article.php +++ b/plugins/editors-xtd/article/article.php @@ -66,6 +66,8 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_ARTICLE_BUTTON_ARTICLE'); $button->name = 'file-add'; + $button->iconSVG = ''; $button->realName = 'PlgButtonArticle'; $button->options = [ 'height' => '300px', diff --git a/plugins/editors-xtd/contact/contact.php b/plugins/editors-xtd/contact/contact.php index c76167c13d7a3..5c29e13eddbf2 100644 --- a/plugins/editors-xtd/contact/contact.php +++ b/plugins/editors-xtd/contact/contact.php @@ -56,6 +56,9 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_EDITORS-XTD_CONTACT_BUTTON_CONTACT'); $button->name = 'address'; + $button->iconSVG = ''; $button->options = [ 'height' => '300px', 'width' => '800px', diff --git a/plugins/editors-xtd/fields/fields.php b/plugins/editors-xtd/fields/fields.php index 89f329a3c0629..df0c0b9824ed0 100644 --- a/plugins/editors-xtd/fields/fields.php +++ b/plugins/editors-xtd/fields/fields.php @@ -68,6 +68,12 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_EDITORS-XTD_FIELDS_BUTTON_FIELD'); $button->name = 'puzzle'; + $button->iconSVG = ''; $button->options = [ 'height' => '300px', 'width' => '800px', diff --git a/plugins/editors-xtd/image/image.php b/plugins/editors-xtd/image/image.php index 9cb2671636274..7e1b9d556c71c 100644 --- a/plugins/editors-xtd/image/image.php +++ b/plugins/editors-xtd/image/image.php @@ -69,6 +69,9 @@ public function onDisplay($name, $asset, $author) $button->link = $link; $button->text = Text::_('PLG_IMAGE_BUTTON_IMAGE'); $button->name = 'pictures'; + $button->iconSVG = ''; $button->options = [ 'height' => '400px', 'width' => '800px', diff --git a/plugins/editors-xtd/menu/menu.php b/plugins/editors-xtd/menu/menu.php index 9844440a9a89c..8162b94a3b9a8 100644 --- a/plugins/editors-xtd/menu/menu.php +++ b/plugins/editors-xtd/menu/menu.php @@ -57,6 +57,9 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_EDITORS-XTD_MENU_BUTTON_MENU'); $button->name = 'share-alt'; + $button->iconSVG = ''; $button->options = [ 'height' => '300px', 'width' => '800px', diff --git a/plugins/editors-xtd/module/module.php b/plugins/editors-xtd/module/module.php index beacaca0dee6d..cc00b2447f9db 100644 --- a/plugins/editors-xtd/module/module.php +++ b/plugins/editors-xtd/module/module.php @@ -58,6 +58,8 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_MODULE_BUTTON_MODULE'); $button->name = 'file-add'; + $button->iconSVG = ''; $button->options = [ 'height' => '300px', 'width' => '800px', diff --git a/plugins/editors-xtd/pagebreak/pagebreak.php b/plugins/editors-xtd/pagebreak/pagebreak.php index dd03d8709b5d8..72c824f89ac39 100644 --- a/plugins/editors-xtd/pagebreak/pagebreak.php +++ b/plugins/editors-xtd/pagebreak/pagebreak.php @@ -65,6 +65,9 @@ public function onDisplay($name) $button->link = $link; $button->text = Text::_('PLG_EDITORSXTD_PAGEBREAK_BUTTON_PAGEBREAK'); $button->name = 'copy'; + $button->iconSVG = ''; $button->options = [ 'height' => '200px', 'width' => '400px', diff --git a/plugins/editors-xtd/readmore/readmore.php b/plugins/editors-xtd/readmore/readmore.php index 681e241f9bc62..1be15a05b5044 100644 --- a/plugins/editors-xtd/readmore/readmore.php +++ b/plugins/editors-xtd/readmore/readmore.php @@ -66,6 +66,7 @@ public function onDisplay($name) $button->onclick = 'insertReadmore(\'' . $name . '\');return false;'; $button->text = Text::_('PLG_READMORE_BUTTON_READMORE'); $button->name = 'arrow-down'; + $button->iconSVG = ''; $button->link = '#'; return $button; diff --git a/plugins/editors/tinymce/field/skins.php b/plugins/editors/tinymce/field/skins.php index fa13462dfbcf4..95f967768ee50 100644 --- a/plugins/editors/tinymce/field/skins.php +++ b/plugins/editors/tinymce/field/skins.php @@ -34,7 +34,7 @@ public function getOptions() { $options = array(); - $directories = glob(JPATH_ROOT . '/media/vendor/tinymce/skins' . '/*', GLOB_ONLYDIR); + $directories = glob(JPATH_ROOT . '/media/vendor/tinymce/skins/ui' . '/*', GLOB_ONLYDIR); for ($i = 0, $iMax = count($directories); $i < $iMax; ++$i) { diff --git a/plugins/editors/tinymce/form/setoptions.xml b/plugins/editors/tinymce/form/setoptions.xml index 2ac61b6f17937..2f5e52bf6579f 100644 --- a/plugins/editors/tinymce/form/setoptions.xml +++ b/plugins/editors/tinymce/form/setoptions.xml @@ -7,6 +7,7 @@ multiple="true" class="access-select" labelclass="badge badge-success" + layout="joomla.form.field.list-fancy-select" /> getAuthorisedGroups(), $user->getAuthorisedGroups()); // Prepare the parameters @@ -192,10 +192,10 @@ public function onDisplay( $levelParams->loadObject($extraOptions); // List the skins - $skindirs = glob(JPATH_ROOT . '/media/vendor/tinymce/skins' . '/*', GLOB_ONLYDIR); + $skindirs = glob(JPATH_ROOT . '/media/vendor/tinymce/skins/ui' . '/*', GLOB_ONLYDIR); // Set the selected skin - $skin = 'lightgray'; + $skin = 'oxide'; $side = $app->isClient('administrator') ? 'skin_admin' : 'skin'; if ((int) $levelParams->get($side, 0) < count($skindirs)) @@ -344,6 +344,16 @@ public function onDisplay( $html_width = ''; } + if (is_numeric($html_width)) + { + $html_width .= 'px'; + } + + if (is_numeric($html_height)) + { + $html_height .= 'px'; + } + // The param is true for vertical resizing only, false or both $resizing = (bool) $levelParams->get('resizing', true); $resize_horizontal = (bool) $levelParams->get('resize_horizontal', true); @@ -358,7 +368,6 @@ public function onDisplay( 'autolink', 'lists', 'save', - 'colorpicker', 'importcss', ); @@ -455,7 +464,7 @@ public function onDisplay( } // Check for extra plugins, from the setoptions form - foreach (array('wordcount' => 1, 'advlist' => 1, 'autosave' => 1, 'contextmenu' => 1) as $pName => $def) + foreach (array('wordcount' => 1, 'advlist' => 1, 'autosave' => 1) as $pName => $def) { if ($levelParams->get($pName, $def)) { @@ -506,6 +515,9 @@ public function onDisplay( $scriptOptions['uploadUri'] = $uploadUrl; } + // Convert pt to px in dropdown + $scriptOptions['fontsize_formats'] = '8px 10px 12px 14px 18px 24px 36px'; + // User custom plugins and buttons $custom_plugin = trim($levelParams->get('custom_plugin', '')); $custom_button = trim($levelParams->get('custom_button', '')); @@ -697,11 +709,12 @@ private function tinyButtons($name, $excluded) $coreButton = []; - $coreButton['name'] = $btnName; - $coreButton['href'] = $href; - $coreButton['id'] = $modalId; - $coreButton['icon'] = 'none icon-' . $icon; - $coreButton['click'] = $onclick; + $coreButton['name'] = $btnName; + $coreButton['href'] = $href; + $coreButton['id'] = $modalId; + $coreButton['icon'] = $icon; + $coreButton['click'] = $onclick; + $coreButton['iconSVG'] = $button->get('iconSVG'); // The array with the toolbar buttons $btnsNames[] = $coreButton; @@ -945,8 +958,6 @@ public static function getKnownButtons() 'removeformat' => array('label' => 'Clear formatting'), // Buttons from the plugins - 'forecolor' => array('label' => 'Text color', 'plugin' => 'textcolor'), - 'backcolor' => array('label' => 'Background color', 'plugin' => 'textcolor'), 'anchor' => array('label' => 'Anchor', 'plugin' => 'anchor'), 'hr' => array('label' => 'Horizontal line', 'plugin' => 'hr'), 'ltr' => array('label' => 'Left to right', 'plugin' => 'directionality'), diff --git a/plugins/editors/tinymce/tinymce.xml b/plugins/editors/tinymce/tinymce.xml index 8e6ebc5e55fa8..1ffeed6a8ed26 100644 --- a/plugins/editors/tinymce/tinymce.xml +++ b/plugins/editors/tinymce/tinymce.xml @@ -1,7 +1,7 @@ plg_editors_tinymce - 4.8.3 + 5.0.1 2005-2017 Ephox Corporation N/A @@ -24,10 +24,10 @@
-
From 1c9b23223f8ac1cfe0103f259b278bd0899225e2 Mon Sep 17 00:00:00 2001 From: wilsonge Date: Thu, 18 Apr 2019 14:21:03 +0100 Subject: [PATCH 11/11] Tag 4.0 Alpha 8 --- .../components/com_actionlogs/actionlogs.php | 2 +- .../components/com_actionlogs/actionlogs.xml | 2 +- .../components/com_actionlogs/controller.php | 2 +- .../com_actionlogs/controllers/actionlogs.php | 2 +- .../com_actionlogs/helpers/actionlogs.php | 2 +- .../com_actionlogs/layouts/logstable.php | 2 +- .../libraries/actionlogplugin.php | 2 +- .../com_actionlogs/models/actionlog.php | 2 +- .../com_actionlogs/models/actionlogs.php | 2 +- .../models/fields/extension.php | 2 +- .../models/fields/logcreator.php | 2 +- .../models/fields/logsdaterange.php | 2 +- .../com_actionlogs/models/fields/logtype.php | 2 +- .../views/actionlogs/tmpl/default.php | 2 +- .../views/actionlogs/view.html.php | 2 +- .../Controller/AjaxController.php | 2 +- .../com_contact/Controller/AjaxController.php | 2 +- .../com_content/Controller/AjaxController.php | 2 +- .../com_fields/Field/FieldLayoutField.php | 2 +- .../Controller/ManageController.php | 2 +- .../com_installer/Model/ManageModel.php | 2 +- .../Field/LanguageclientField.php | 2 +- .../com_menus/Controller/AjaxController.php | 2 +- .../Controller/AjaxController.php | 2 +- .../com_postinstall/Model/MessagesModel.php | 2 +- .../Controller/ConsentsController.php | 2 +- .../Controller/DisplayController.php | 2 +- .../Controller/RequestController.php | 2 +- .../Controller/RequestsController.php | 2 +- .../com_privacy/Dispatcher/Dispatcher.php | 2 +- .../components/com_privacy/Export/Domain.php | 2 +- .../components/com_privacy/Export/Field.php | 2 +- .../components/com_privacy/Export/Item.php | 2 +- .../Extension/PrivacyComponent.php | 4 +- .../com_privacy/Field/RequeststatusField.php | 2 +- .../com_privacy/Field/RequesttypeField.php | 2 +- .../com_privacy/Helper/PrivacyHelper.php | 2 +- .../com_privacy/Model/CapabilitiesModel.php | 2 +- .../com_privacy/Model/ConsentsModel.php | 2 +- .../com_privacy/Model/DashboardModel.php | 2 +- .../com_privacy/Model/ExportModel.php | 4 +- .../com_privacy/Model/RemoveModel.php | 4 +- .../com_privacy/Model/RequestModel.php | 4 +- .../com_privacy/Model/RequestsModel.php | 2 +- .../com_privacy/Plugin/PrivacyPlugin.php | 2 +- .../components/com_privacy/Removal/Status.php | 2 +- .../com_privacy/Service/HTML/Privacy.php | 2 +- .../com_privacy/Table/ConsentTable.php | 2 +- .../com_privacy/Table/RequestTable.php | 2 +- .../View/Capabilities/HtmlView.php | 2 +- .../com_privacy/View/Consents/HtmlView.php | 2 +- .../com_privacy/View/Dashboard/HtmlView.php | 2 +- .../com_privacy/View/Export/XmlView.php | 2 +- .../com_privacy/View/Request/HtmlView.php | 2 +- .../com_privacy/View/Requests/HtmlView.php | 2 +- .../components/com_privacy/privacy.xml | 2 +- .../com_privacy/services/provider.php | 2 +- .../com_privacy/tmpl/capabilities/default.php | 2 +- .../com_privacy/tmpl/consents/default.php | 2 +- .../com_privacy/tmpl/dashboard/default.php | 2 +- .../com_privacy/tmpl/request/default.php | 2 +- .../com_privacy/tmpl/request/edit.php | 2 +- .../com_privacy/tmpl/requests/default.php | 2 +- .../com_users/Controller/UserController.php | 2 +- .../language/en-GB/en-GB.com_actionlogs.ini | 2 +- .../en-GB/en-GB.com_actionlogs.sys.ini | 2 +- .../language/en-GB/en-GB.com_privacy.ini | 2 +- .../language/en-GB/en-GB.com_privacy.sys.ini | 2 +- .../en-GB/en-GB.mod_latestactions.ini | 2 +- .../en-GB/en-GB.mod_latestactions.sys.ini | 2 +- .../en-GB/en-GB.mod_privacy_dashboard.ini | 2 +- .../en-GB/en-GB.mod_privacy_dashboard.sys.ini | 2 +- .../en-GB/en-GB.plg_actionlog_joomla.ini | 2 +- .../en-GB/en-GB.plg_actionlog_joomla.sys.ini | 2 +- .../en-GB.plg_captcha_recaptcha_invisible.ini | 2 +- ...GB.plg_captcha_recaptcha_invisible.sys.ini | 2 +- .../en-GB.plg_content_confirmconsent.ini | 2 +- .../en-GB.plg_content_confirmconsent.sys.ini | 2 +- .../en-GB/en-GB.plg_fields_repeatable.ini | 2 +- .../en-GB/en-GB.plg_fields_repeatable.sys.ini | 2 +- .../en-GB/en-GB.plg_privacy_actionlogs.ini | 2 +- .../en-GB.plg_privacy_actionlogs.sys.ini | 2 +- .../en-GB/en-GB.plg_privacy_consents.ini | 2 +- .../en-GB/en-GB.plg_privacy_consents.sys.ini | 2 +- .../en-GB/en-GB.plg_privacy_contact.ini | 2 +- .../en-GB/en-GB.plg_privacy_contact.sys.ini | 2 +- .../en-GB/en-GB.plg_privacy_content.ini | 2 +- .../en-GB/en-GB.plg_privacy_content.sys.ini | 2 +- .../en-GB/en-GB.plg_privacy_message.ini | 2 +- .../en-GB/en-GB.plg_privacy_message.sys.ini | 2 +- .../language/en-GB/en-GB.plg_privacy_user.ini | 2 +- .../en-GB/en-GB.plg_privacy_user.sys.ini | 2 +- .../en-GB.plg_quickicon_privacycheck.ini | 2 +- .../en-GB.plg_quickicon_privacycheck.sys.ini | 2 +- .../en-GB/en-GB.plg_system_actionlogs.ini | 2 +- .../en-GB/en-GB.plg_system_actionlogs.sys.ini | 2 +- .../en-GB/en-GB.plg_system_logrotation.ini | 2 +- .../en-GB.plg_system_logrotation.sys.ini | 2 +- .../en-GB/en-GB.plg_system_privacyconsent.ini | 2 +- .../en-GB.plg_system_privacyconsent.sys.ini | 2 +- .../language/en-GB/en-GB.plg_user_terms.ini | 2 +- .../en-GB/en-GB.plg_user_terms.sys.ini | 2 +- administrator/language/en-GB/en-GB.xml | 2 +- administrator/language/en-GB/install.xml | 2 +- administrator/manifests/files/joomla.xml | 4 +- .../manifests/packages/pkg_en-GB.xml | 2 +- .../modules/mod_latestactions/helper.php | 2 +- .../mod_latestactions/mod_latestactions.php | 2 +- .../mod_latestactions/mod_latestactions.xml | 2 +- .../mod_latestactions/tmpl/default.php | 2 +- .../modules/mod_privacy_dashboard/helper.php | 2 +- .../mod_privacy_dashboard.php | 2 +- .../mod_privacy_dashboard.xml | 2 +- .../mod_privacy_dashboard/tmpl/default.php | 2 +- build/media_source/mod_menu/js/menu.es6.js | 2 +- .../js/recaptcha.js | 2 +- .../js/privacycheck.js | 2 +- .../Controller/DisplayController.php | 2 +- .../Controller/RequestController.php | 2 +- components/com_privacy/Model/ConfirmModel.php | 4 +- components/com_privacy/Model/RemindModel.php | 2 +- components/com_privacy/Model/RequestModel.php | 4 +- components/com_privacy/Service/Router.php | 2 +- .../com_privacy/View/Confirm/HtmlView.php | 2 +- .../com_privacy/View/Remind/HtmlView.php | 2 +- .../com_privacy/View/Request/HtmlView.php | 2 +- .../com_privacy/tmpl/confirm/default.php | 2 +- .../com_privacy/tmpl/remind/default.php | 2 +- .../com_privacy/tmpl/request/default.php | 2 +- .../Controller/ProfileController.php | 2 +- .../layouts/joomla/form/renderfield.php | 2 +- installation/language/en-GB/en-GB.xml | 2 +- language/en-GB/en-GB.com_privacy.ini | 2 +- language/en-GB/en-GB.xml | 2 +- language/en-GB/install.xml | 2 +- layouts/joomla/installer/changelog.php | 2 +- libraries/src/Changelog/Changelog.php | 42 +++++++++---------- .../Loader/WritableContainerLoader.php | 16 +++---- .../Loader/WritableLoaderInterface.php | 4 +- libraries/src/Extension/ExtensionHelper.php | 2 +- libraries/src/Form/Rule/ExistsRule.php | 2 +- libraries/src/Installer/InstallerAdapter.php | 2 +- libraries/src/Service/Provider/User.php | 2 +- libraries/src/Table/Module.php | 2 +- libraries/src/Table/Table.php | 2 +- libraries/src/User/UserFactory.php | 8 ++-- libraries/src/User/UserFactoryInterface.php | 8 ++-- libraries/src/Version.php | 8 ++-- plugins/actionlog/joomla/joomla.php | 2 +- plugins/actionlog/joomla/joomla.xml | 2 +- plugins/authentication/joomla/joomla.php | 4 +- .../recaptcha_invisible.php | 2 +- .../recaptcha_invisible.xml | 2 +- .../content/confirmconsent/confirmconsent.php | 2 +- .../content/confirmconsent/confirmconsent.xml | 2 +- plugins/content/pagebreak/tmpl/toc.php | 2 +- plugins/fields/repeatable/repeatable.php | 2 +- plugins/fields/repeatable/repeatable.xml | 2 +- plugins/fields/repeatable/tmpl/repeatable.php | 2 +- plugins/privacy/actionlogs/actionlogs.php | 2 +- plugins/privacy/actionlogs/actionlogs.xml | 2 +- plugins/privacy/consents/consents.php | 2 +- plugins/privacy/consents/consents.xml | 2 +- plugins/privacy/contact/contact.php | 2 +- plugins/privacy/contact/contact.xml | 2 +- plugins/privacy/content/content.php | 2 +- plugins/privacy/content/content.xml | 2 +- plugins/privacy/message/message.php | 2 +- plugins/privacy/message/message.xml | 2 +- plugins/privacy/user/user.php | 2 +- plugins/privacy/user/user.xml | 2 +- .../quickicon/privacycheck/privacycheck.php | 2 +- .../quickicon/privacycheck/privacycheck.xml | 2 +- plugins/system/actionlogs/actionlogs.php | 2 +- plugins/system/actionlogs/actionlogs.xml | 2 +- plugins/system/languagecode/languagecode.php | 2 +- plugins/system/logrotation/logrotation.php | 2 +- plugins/system/logrotation/logrotation.xml | 2 +- .../system/privacyconsent/field/privacy.php | 2 +- .../system/privacyconsent/privacyconsent.php | 2 +- .../system/privacyconsent/privacyconsent.xml | 2 +- plugins/system/skipto/skipto.php | 4 +- plugins/system/stats/stats.php | 2 +- plugins/user/terms/field/terms.php | 2 +- plugins/user/terms/terms.php | 2 +- plugins/user/terms/terms.xml | 2 +- tests/Unit/Libraries/Cms/Access/RuleTest.php | 2 +- tests/Unit/Libraries/Cms/Access/RulesTest.php | 2 +- .../Loader/WritableContainerLoaderTest.php | 2 +- .../Libraries/Cms/Document/DocumentTest.php | 2 +- .../Libraries/Cms/Environment/BrowserTest.php | 2 +- .../Unit/Libraries/Cms/Feed/FeedEntryTest.php | 2 +- .../Libraries/Cms/Feed/FeedFactoryTest.php | 2 +- .../Unit/Libraries/Cms/Feed/FeedLinkTest.php | 2 +- .../Libraries/Cms/Feed/FeedParserTest.php | 2 +- tests/Unit/Libraries/Cms/Feed/FeedTest.php | 2 +- .../Cms/Feed/Parser/AtomParserTest.php | 2 +- .../Cms/Feed/Parser/RssParserTest.php | 2 +- .../Unit/Libraries/Cms/Html/JHtmlDateTest.php | 2 +- .../Libraries/Cms/Html/JHtmlNumberTest.php | 2 +- .../Libraries/Cms/Html/JHtmlStringTest.php | 2 +- .../Unit/Libraries/Cms/Html/JHtmlTelTest.php | 2 +- .../Libraries/Cms/Layout/BaseLayoutTest.php | 2 +- .../Libraries/Cms/Mail/MailHelperTest.php | 2 +- tests/Unit/Libraries/Cms/Mail/MailTest.php | 2 +- .../Libraries/Cms/Microdata/MicrodataTest.php | 2 +- .../Libraries/Cms/Object/CMSObjectTest.php | 2 +- .../Cms/Toolbar/Button/CustomButtonTest.php | 2 +- .../Libraries/Cms/Toolbar/ToolbarTest.php | 2 +- tests/Unit/Libraries/Cms/VersionTest.php | 2 +- tests/Unit/bootstrap.php | 2 +- .../joomla-switcher/joomla-switcher.spec.js | 2 +- 212 files changed, 258 insertions(+), 258 deletions(-) diff --git a/administrator/components/com_actionlogs/actionlogs.php b/administrator/components/com_actionlogs/actionlogs.php index 5f467d68d378f..a2bbda1256c3e 100644 --- a/administrator/components/com_actionlogs/actionlogs.php +++ b/administrator/components/com_actionlogs/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/actionlogs.xml b/administrator/components/com_actionlogs/actionlogs.xml index 0258379f0c3ef..19be5ab5d0722 100644 --- a/administrator/components/com_actionlogs/actionlogs.xml +++ b/administrator/components/com_actionlogs/actionlogs.xml @@ -3,7 +3,7 @@ com_actionlogs Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/administrator/components/com_actionlogs/controller.php b/administrator/components/com_actionlogs/controller.php index 0967bcd774970..bf51ea71444c1 100644 --- a/administrator/components/com_actionlogs/controller.php +++ b/administrator/components/com_actionlogs/controller.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/controllers/actionlogs.php b/administrator/components/com_actionlogs/controllers/actionlogs.php index b5fc0dace1246..a6e8249131be4 100644 --- a/administrator/components/com_actionlogs/controllers/actionlogs.php +++ b/administrator/components/com_actionlogs/controllers/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/helpers/actionlogs.php b/administrator/components/com_actionlogs/helpers/actionlogs.php index 91532a1e2f211..bdc23c3ff86c3 100644 --- a/administrator/components/com_actionlogs/helpers/actionlogs.php +++ b/administrator/components/com_actionlogs/helpers/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/layouts/logstable.php b/administrator/components/com_actionlogs/layouts/logstable.php index 2aca08c590e3b..4787210607c3a 100644 --- a/administrator/components/com_actionlogs/layouts/logstable.php +++ b/administrator/components/com_actionlogs/layouts/logstable.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/libraries/actionlogplugin.php b/administrator/components/com_actionlogs/libraries/actionlogplugin.php index e9e1819829a77..646c8deda2d55 100644 --- a/administrator/components/com_actionlogs/libraries/actionlogplugin.php +++ b/administrator/components/com_actionlogs/libraries/actionlogplugin.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; diff --git a/administrator/components/com_actionlogs/models/actionlog.php b/administrator/components/com_actionlogs/models/actionlog.php index 61f0016ee0701..fba9f4719bf7c 100644 --- a/administrator/components/com_actionlogs/models/actionlog.php +++ b/administrator/components/com_actionlogs/models/actionlog.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/models/actionlogs.php b/administrator/components/com_actionlogs/models/actionlogs.php index 8efc01d4d0088..689e5404872e0 100644 --- a/administrator/components/com_actionlogs/models/actionlogs.php +++ b/administrator/components/com_actionlogs/models/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/models/fields/extension.php b/administrator/components/com_actionlogs/models/fields/extension.php index 4eb3153662d32..ba79b13363331 100644 --- a/administrator/components/com_actionlogs/models/fields/extension.php +++ b/administrator/components/com_actionlogs/models/fields/extension.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ diff --git a/administrator/components/com_actionlogs/models/fields/logcreator.php b/administrator/components/com_actionlogs/models/fields/logcreator.php index c93081555d9a1..8b057c4fcfabe 100644 --- a/administrator/components/com_actionlogs/models/fields/logcreator.php +++ b/administrator/components/com_actionlogs/models/fields/logcreator.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ diff --git a/administrator/components/com_actionlogs/models/fields/logsdaterange.php b/administrator/components/com_actionlogs/models/fields/logsdaterange.php index f415254455b21..eb888c1561f6c 100644 --- a/administrator/components/com_actionlogs/models/fields/logsdaterange.php +++ b/administrator/components/com_actionlogs/models/fields/logsdaterange.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ diff --git a/administrator/components/com_actionlogs/models/fields/logtype.php b/administrator/components/com_actionlogs/models/fields/logtype.php index c8f0ef56b08e5..87e0f9ba431dd 100644 --- a/administrator/components/com_actionlogs/models/fields/logtype.php +++ b/administrator/components/com_actionlogs/models/fields/logtype.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage System.actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ diff --git a/administrator/components/com_actionlogs/views/actionlogs/tmpl/default.php b/administrator/components/com_actionlogs/views/actionlogs/tmpl/default.php index 74b9e0f8658da..15fe02b916e60 100644 --- a/administrator/components/com_actionlogs/views/actionlogs/tmpl/default.php +++ b/administrator/components/com_actionlogs/views/actionlogs/tmpl/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_actionlogs/views/actionlogs/view.html.php b/administrator/components/com_actionlogs/views/actionlogs/view.html.php index 7bfde3fda97dc..481bdce6ddd78 100644 --- a/administrator/components/com_actionlogs/views/actionlogs/view.html.php +++ b/administrator/components/com_actionlogs/views/actionlogs/view.html.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_categories/Controller/AjaxController.php b/administrator/components/com_categories/Controller/AjaxController.php index 234c1abc91a33..336264f030e8f 100644 --- a/administrator/components/com_categories/Controller/AjaxController.php +++ b/administrator/components/com_categories/Controller/AjaxController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_categories * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_contact/Controller/AjaxController.php b/administrator/components/com_contact/Controller/AjaxController.php index ece8e98c1717b..e7116d491a805 100644 --- a/administrator/components/com_contact/Controller/AjaxController.php +++ b/administrator/components/com_contact/Controller/AjaxController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_contact * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_content/Controller/AjaxController.php b/administrator/components/com_content/Controller/AjaxController.php index fd93313aaccd4..d68c266b7fb7b 100644 --- a/administrator/components/com_content/Controller/AjaxController.php +++ b/administrator/components/com_content/Controller/AjaxController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_content * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_fields/Field/FieldLayoutField.php b/administrator/components/com_fields/Field/FieldLayoutField.php index d7f52fed6fb98..c17461f182f02 100644 --- a/administrator/components/com_fields/Field/FieldLayoutField.php +++ b/administrator/components/com_fields/Field/FieldLayoutField.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_fields * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_installer/Controller/ManageController.php b/administrator/components/com_installer/Controller/ManageController.php index 67a43cfa09646..e2409768d285c 100644 --- a/administrator/components/com_installer/Controller/ManageController.php +++ b/administrator/components/com_installer/Controller/ManageController.php @@ -148,7 +148,7 @@ public function refresh() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadChangelog() { diff --git a/administrator/components/com_installer/Model/ManageModel.php b/administrator/components/com_installer/Model/ManageModel.php index b0a706f4af34a..963b35bcc2493 100644 --- a/administrator/components/com_installer/Model/ManageModel.php +++ b/administrator/components/com_installer/Model/ManageModel.php @@ -398,7 +398,7 @@ protected function getListQuery() * * @return string The output to show in the modal. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadChangelog($eid, $source) { diff --git a/administrator/components/com_languages/Field/LanguageclientField.php b/administrator/components/com_languages/Field/LanguageclientField.php index e66c7de45f4f5..a625202f6cdba 100644 --- a/administrator/components/com_languages/Field/LanguageclientField.php +++ b/administrator/components/com_languages/Field/LanguageclientField.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_languages * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_menus/Controller/AjaxController.php b/administrator/components/com_menus/Controller/AjaxController.php index f2f37b08bf5fd..d4c3daf6581ba 100644 --- a/administrator/components/com_menus/Controller/AjaxController.php +++ b/administrator/components/com_menus/Controller/AjaxController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_menus * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_newsfeeds/Controller/AjaxController.php b/administrator/components/com_newsfeeds/Controller/AjaxController.php index 8e96e532a1647..180e5d324e77d 100644 --- a/administrator/components/com_newsfeeds/Controller/AjaxController.php +++ b/administrator/components/com_newsfeeds/Controller/AjaxController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_newsfeeds * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_postinstall/Model/MessagesModel.php b/administrator/components/com_postinstall/Model/MessagesModel.php index 1d1b46248cf9c..1e5914250db37 100644 --- a/administrator/components/com_postinstall/Model/MessagesModel.php +++ b/administrator/components/com_postinstall/Model/MessagesModel.php @@ -586,7 +586,7 @@ public function addPostInstallationMessage(array $options) * * @return integer * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function getJoomlaFilesExtensionId() { diff --git a/administrator/components/com_privacy/Controller/ConsentsController.php b/administrator/components/com_privacy/Controller/ConsentsController.php index 9bbbab4838e89..23af53d9145e2 100644 --- a/administrator/components/com_privacy/Controller/ConsentsController.php +++ b/administrator/components/com_privacy/Controller/ConsentsController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Controller/DisplayController.php b/administrator/components/com_privacy/Controller/DisplayController.php index bac4d5d39c611..d35884fcc3c0d 100644 --- a/administrator/components/com_privacy/Controller/DisplayController.php +++ b/administrator/components/com_privacy/Controller/DisplayController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Controller/RequestController.php b/administrator/components/com_privacy/Controller/RequestController.php index dc794282a78bb..09f920e1f1981 100644 --- a/administrator/components/com_privacy/Controller/RequestController.php +++ b/administrator/components/com_privacy/Controller/RequestController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Controller/RequestsController.php b/administrator/components/com_privacy/Controller/RequestsController.php index a0d88ca4988ad..62365c5a6cffb 100644 --- a/administrator/components/com_privacy/Controller/RequestsController.php +++ b/administrator/components/com_privacy/Controller/RequestsController.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Dispatcher/Dispatcher.php b/administrator/components/com_privacy/Dispatcher/Dispatcher.php index 8fd83c861ac7e..7e2106d77ad37 100644 --- a/administrator/components/com_privacy/Dispatcher/Dispatcher.php +++ b/administrator/components/com_privacy/Dispatcher/Dispatcher.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Export/Domain.php b/administrator/components/com_privacy/Export/Domain.php index d6098c9925c08..97ee3950a4145 100644 --- a/administrator/components/com_privacy/Export/Domain.php +++ b/administrator/components/com_privacy/Export/Domain.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Export/Field.php b/administrator/components/com_privacy/Export/Field.php index 0a057e5d5b503..f982f160e64ad 100644 --- a/administrator/components/com_privacy/Export/Field.php +++ b/administrator/components/com_privacy/Export/Field.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Export/Item.php b/administrator/components/com_privacy/Export/Item.php index 1755125ab866c..6e174d7eaa481 100644 --- a/administrator/components/com_privacy/Export/Item.php +++ b/administrator/components/com_privacy/Export/Item.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Extension/PrivacyComponent.php b/administrator/components/com_privacy/Extension/PrivacyComponent.php index e7498bd67467d..5be2a6f973088 100644 --- a/administrator/components/com_privacy/Extension/PrivacyComponent.php +++ b/administrator/components/com_privacy/Extension/PrivacyComponent.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -20,7 +20,7 @@ /** * Component class for com_privacy * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ class PrivacyComponent extends MVCComponent implements BootableExtensionInterface { diff --git a/administrator/components/com_privacy/Field/RequeststatusField.php b/administrator/components/com_privacy/Field/RequeststatusField.php index 9bf464d3b5c32..f9b4319d8985d 100644 --- a/administrator/components/com_privacy/Field/RequeststatusField.php +++ b/administrator/components/com_privacy/Field/RequeststatusField.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Field/RequesttypeField.php b/administrator/components/com_privacy/Field/RequesttypeField.php index 23aeea5692558..8003f88bb4f24 100644 --- a/administrator/components/com_privacy/Field/RequesttypeField.php +++ b/administrator/components/com_privacy/Field/RequesttypeField.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Helper/PrivacyHelper.php b/administrator/components/com_privacy/Helper/PrivacyHelper.php index 2265bac27af43..c2960ed35b91c 100644 --- a/administrator/components/com_privacy/Helper/PrivacyHelper.php +++ b/administrator/components/com_privacy/Helper/PrivacyHelper.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Model/CapabilitiesModel.php b/administrator/components/com_privacy/Model/CapabilitiesModel.php index 85d68209ddbee..86345afb5a0d7 100644 --- a/administrator/components/com_privacy/Model/CapabilitiesModel.php +++ b/administrator/components/com_privacy/Model/CapabilitiesModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Model/ConsentsModel.php b/administrator/components/com_privacy/Model/ConsentsModel.php index 0a4274e08b9ef..a88406f5a6e0c 100644 --- a/administrator/components/com_privacy/Model/ConsentsModel.php +++ b/administrator/components/com_privacy/Model/ConsentsModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Model/DashboardModel.php b/administrator/components/com_privacy/Model/DashboardModel.php index 6794b271ba411..6892be7c2ae6c 100644 --- a/administrator/components/com_privacy/Model/DashboardModel.php +++ b/administrator/components/com_privacy/Model/DashboardModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Model/ExportModel.php b/administrator/components/com_privacy/Model/ExportModel.php index 8297e38e48842..15d9d3a8c3d7c 100644 --- a/administrator/components/com_privacy/Model/ExportModel.php +++ b/administrator/components/com_privacy/Model/ExportModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -342,7 +342,7 @@ protected function populateState() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private function getActionlogModel(): \ActionlogsModelActionlog { diff --git a/administrator/components/com_privacy/Model/RemoveModel.php b/administrator/components/com_privacy/Model/RemoveModel.php index 525ef003f09fd..88372aff5ba72 100644 --- a/administrator/components/com_privacy/Model/RemoveModel.php +++ b/administrator/components/com_privacy/Model/RemoveModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -208,7 +208,7 @@ protected function populateState() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private function getActionlogModel(): \ActionlogsModelActionlog { diff --git a/administrator/components/com_privacy/Model/RequestModel.php b/administrator/components/com_privacy/Model/RequestModel.php index 002da1420d727..2ccf45ddae01b 100644 --- a/administrator/components/com_privacy/Model/RequestModel.php +++ b/administrator/components/com_privacy/Model/RequestModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -460,7 +460,7 @@ public function validate($form, $data, $group = null) * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private function getActionlogModel(): \ActionlogsModelActionlog { diff --git a/administrator/components/com_privacy/Model/RequestsModel.php b/administrator/components/com_privacy/Model/RequestsModel.php index adef95a3b289d..fcd88bc19510f 100644 --- a/administrator/components/com_privacy/Model/RequestsModel.php +++ b/administrator/components/com_privacy/Model/RequestsModel.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Plugin/PrivacyPlugin.php b/administrator/components/com_privacy/Plugin/PrivacyPlugin.php index 6111269a3a973..3ac958c1af6ae 100644 --- a/administrator/components/com_privacy/Plugin/PrivacyPlugin.php +++ b/administrator/components/com_privacy/Plugin/PrivacyPlugin.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Removal/Status.php b/administrator/components/com_privacy/Removal/Status.php index debb360b8189a..3e9653db0cbfe 100644 --- a/administrator/components/com_privacy/Removal/Status.php +++ b/administrator/components/com_privacy/Removal/Status.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Service/HTML/Privacy.php b/administrator/components/com_privacy/Service/HTML/Privacy.php index 968cf4214ef67..899601f3f35c9 100644 --- a/administrator/components/com_privacy/Service/HTML/Privacy.php +++ b/administrator/components/com_privacy/Service/HTML/Privacy.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Table/ConsentTable.php b/administrator/components/com_privacy/Table/ConsentTable.php index d34edcef73ab0..bf7a1fdc071a6 100644 --- a/administrator/components/com_privacy/Table/ConsentTable.php +++ b/administrator/components/com_privacy/Table/ConsentTable.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/Table/RequestTable.php b/administrator/components/com_privacy/Table/RequestTable.php index 719a9ec5e96dd..7b5256b18c222 100644 --- a/administrator/components/com_privacy/Table/RequestTable.php +++ b/administrator/components/com_privacy/Table/RequestTable.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Capabilities/HtmlView.php b/administrator/components/com_privacy/View/Capabilities/HtmlView.php index 712db26d29899..07fb2688efff2 100644 --- a/administrator/components/com_privacy/View/Capabilities/HtmlView.php +++ b/administrator/components/com_privacy/View/Capabilities/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Consents/HtmlView.php b/administrator/components/com_privacy/View/Consents/HtmlView.php index 6c66fbf39ee8a..f4f908b627d87 100644 --- a/administrator/components/com_privacy/View/Consents/HtmlView.php +++ b/administrator/components/com_privacy/View/Consents/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Dashboard/HtmlView.php b/administrator/components/com_privacy/View/Dashboard/HtmlView.php index 9bcaa164a9481..b9e6d0c6abcc7 100644 --- a/administrator/components/com_privacy/View/Dashboard/HtmlView.php +++ b/administrator/components/com_privacy/View/Dashboard/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Export/XmlView.php b/administrator/components/com_privacy/View/Export/XmlView.php index a66fc0494d1f3..649baf3315bea 100644 --- a/administrator/components/com_privacy/View/Export/XmlView.php +++ b/administrator/components/com_privacy/View/Export/XmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Request/HtmlView.php b/administrator/components/com_privacy/View/Request/HtmlView.php index 304c9832a6f92..34f87a69cc72d 100644 --- a/administrator/components/com_privacy/View/Request/HtmlView.php +++ b/administrator/components/com_privacy/View/Request/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/View/Requests/HtmlView.php b/administrator/components/com_privacy/View/Requests/HtmlView.php index bfc2ce57e7a61..1d8f0c0edcfad 100644 --- a/administrator/components/com_privacy/View/Requests/HtmlView.php +++ b/administrator/components/com_privacy/View/Requests/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/privacy.xml b/administrator/components/com_privacy/privacy.xml index abf190f991032..0d26ccd44a61e 100644 --- a/administrator/components/com_privacy/privacy.xml +++ b/administrator/components/com_privacy/privacy.xml @@ -3,7 +3,7 @@ com_privacy Joomla! Project May 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/administrator/components/com_privacy/services/provider.php b/administrator/components/com_privacy/services/provider.php index 97a092da762ce..f290afd842c16 100644 --- a/administrator/components/com_privacy/services/provider.php +++ b/administrator/components/com_privacy/services/provider.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/capabilities/default.php b/administrator/components/com_privacy/tmpl/capabilities/default.php index 4f0e03e27e1a9..a3e632f774007 100644 --- a/administrator/components/com_privacy/tmpl/capabilities/default.php +++ b/administrator/components/com_privacy/tmpl/capabilities/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/consents/default.php b/administrator/components/com_privacy/tmpl/consents/default.php index 5aefcae5fb9ff..bb1659829a3a5 100644 --- a/administrator/components/com_privacy/tmpl/consents/default.php +++ b/administrator/components/com_privacy/tmpl/consents/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/dashboard/default.php b/administrator/components/com_privacy/tmpl/dashboard/default.php index 8767b9c0b9ff1..f2b6fd5d1cbe4 100644 --- a/administrator/components/com_privacy/tmpl/dashboard/default.php +++ b/administrator/components/com_privacy/tmpl/dashboard/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/request/default.php b/administrator/components/com_privacy/tmpl/request/default.php index b0d8500659ae6..a26c4573beabf 100644 --- a/administrator/components/com_privacy/tmpl/request/default.php +++ b/administrator/components/com_privacy/tmpl/request/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/request/edit.php b/administrator/components/com_privacy/tmpl/request/edit.php index d679b04a4e384..60d93609049f9 100644 --- a/administrator/components/com_privacy/tmpl/request/edit.php +++ b/administrator/components/com_privacy/tmpl/request/edit.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_privacy/tmpl/requests/default.php b/administrator/components/com_privacy/tmpl/requests/default.php index ae4f5a523fff5..236c21318092c 100644 --- a/administrator/components/com_privacy/tmpl/requests/default.php +++ b/administrator/components/com_privacy/tmpl/requests/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/components/com_users/Controller/UserController.php b/administrator/components/com_users/Controller/UserController.php index b4763620422c6..ed571cdba07fc 100644 --- a/administrator/components/com_users/Controller/UserController.php +++ b/administrator/components/com_users/Controller/UserController.php @@ -64,7 +64,7 @@ protected function allowEdit($data = array(), $key = 'id') * * @return boolean True if access level checks pass, false otherwise. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function cancel($key = null) { diff --git a/administrator/language/en-GB/en-GB.com_actionlogs.ini b/administrator/language/en-GB/en-GB.com_actionlogs.ini index 46d9f599397e3..3be3208e2eaac 100644 --- a/administrator/language/en-GB/en-GB.com_actionlogs.ini +++ b/administrator/language/en-GB/en-GB.com_actionlogs.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.com_actionlogs.sys.ini b/administrator/language/en-GB/en-GB.com_actionlogs.sys.ini index db27ad08cf0d0..602d0c65079f4 100644 --- a/administrator/language/en-GB/en-GB.com_actionlogs.sys.ini +++ b/administrator/language/en-GB/en-GB.com_actionlogs.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.com_privacy.ini b/administrator/language/en-GB/en-GB.com_privacy.ini index dc3f58e49a449..b079e4b263479 100644 --- a/administrator/language/en-GB/en-GB.com_privacy.ini +++ b/administrator/language/en-GB/en-GB.com_privacy.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.com_privacy.sys.ini b/administrator/language/en-GB/en-GB.com_privacy.sys.ini index a2bf34df661e4..2009c47cecf7a 100644 --- a/administrator/language/en-GB/en-GB.com_privacy.sys.ini +++ b/administrator/language/en-GB/en-GB.com_privacy.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.mod_latestactions.ini b/administrator/language/en-GB/en-GB.mod_latestactions.ini index 6f6682021abc6..824bad7e7be1e 100644 --- a/administrator/language/en-GB/en-GB.mod_latestactions.ini +++ b/administrator/language/en-GB/en-GB.mod_latestactions.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.mod_latestactions.sys.ini b/administrator/language/en-GB/en-GB.mod_latestactions.sys.ini index 2535518ba3835..172fa85814c2e 100644 --- a/administrator/language/en-GB/en-GB.mod_latestactions.sys.ini +++ b/administrator/language/en-GB/en-GB.mod_latestactions.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini b/administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini index fde5ee95b941d..eb6137f1d0db2 100644 --- a/administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini +++ b/administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.mod_privacy_dashboard.sys.ini b/administrator/language/en-GB/en-GB.mod_privacy_dashboard.sys.ini index 22ea11c29cc1f..e84322d06b687 100644 --- a/administrator/language/en-GB/en-GB.mod_privacy_dashboard.sys.ini +++ b/administrator/language/en-GB/en-GB.mod_privacy_dashboard.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_actionlog_joomla.ini b/administrator/language/en-GB/en-GB.plg_actionlog_joomla.ini index 6a128cc084d3a..22a038272cdf4 100644 --- a/administrator/language/en-GB/en-GB.plg_actionlog_joomla.ini +++ b/administrator/language/en-GB/en-GB.plg_actionlog_joomla.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_actionlog_joomla.sys.ini b/administrator/language/en-GB/en-GB.plg_actionlog_joomla.sys.ini index df2e8d05681ae..0ee0a028fd769 100644 --- a/administrator/language/en-GB/en-GB.plg_actionlog_joomla.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_actionlog_joomla.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.ini b/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.ini index 63ea3c259f1fb..af4b4fdcd8362 100644 --- a/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.ini +++ b/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.sys.ini b/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.sys.ini index 04e89ed005185..617871df708ad 100644 --- a/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_content_confirmconsent.ini b/administrator/language/en-GB/en-GB.plg_content_confirmconsent.ini index a74a96838529b..0ac6b4837bc5b 100644 --- a/administrator/language/en-GB/en-GB.plg_content_confirmconsent.ini +++ b/administrator/language/en-GB/en-GB.plg_content_confirmconsent.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_content_confirmconsent.sys.ini b/administrator/language/en-GB/en-GB.plg_content_confirmconsent.sys.ini index ef4ab8ac9e238..409e25448fb2e 100644 --- a/administrator/language/en-GB/en-GB.plg_content_confirmconsent.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_content_confirmconsent.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini b/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini index d36a29da709fa..b8194045665a6 100644 --- a/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini +++ b/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini b/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini index c488fa57b040c..78c5d3f090a84 100644 --- a/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.ini b/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.ini index e6faefd882185..8b82b75795820 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.sys.ini index e6faefd882185..8b82b75795820 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_consents.ini b/administrator/language/en-GB/en-GB.plg_privacy_consents.ini index e58e22c95d83a..384fa685441d3 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_consents.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_consents.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_consents.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_consents.sys.ini index e58e22c95d83a..384fa685441d3 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_consents.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_consents.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_contact.ini b/administrator/language/en-GB/en-GB.plg_privacy_contact.ini index 190cbd446351a..f786dddfc6f21 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_contact.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_contact.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_contact.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_contact.sys.ini index 190cbd446351a..f786dddfc6f21 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_contact.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_contact.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_content.ini b/administrator/language/en-GB/en-GB.plg_privacy_content.ini index 5d50613c7019e..c538ff744f08e 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_content.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_content.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_content.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_content.sys.ini index 5d50613c7019e..c538ff744f08e 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_content.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_content.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_message.ini b/administrator/language/en-GB/en-GB.plg_privacy_message.ini index c67d1908f89aa..9069607fb6070 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_message.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_message.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_message.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_message.sys.ini index c67d1908f89aa..9069607fb6070 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_message.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_message.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_user.ini b/administrator/language/en-GB/en-GB.plg_privacy_user.ini index d1f733954efba..f814f260f8266 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_user.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_user.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini b/administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini index ba043e9af9d9b..8381260dfaa2f 100644 --- a/administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.ini b/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.ini index 4ea2634846cfd..5f44ce52ac25e 100644 --- a/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.ini +++ b/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.sys.ini b/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.sys.ini index f00ff9298b984..dc0a0376779e5 100644 --- a/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_actionlogs.ini b/administrator/language/en-GB/en-GB.plg_system_actionlogs.ini index 04b06840c7377..0f6ae6c52e0cb 100644 --- a/administrator/language/en-GB/en-GB.plg_system_actionlogs.ini +++ b/administrator/language/en-GB/en-GB.plg_system_actionlogs.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_actionlogs.sys.ini b/administrator/language/en-GB/en-GB.plg_system_actionlogs.sys.ini index c1fc13da03f1c..0f30596a797a6 100644 --- a/administrator/language/en-GB/en-GB.plg_system_actionlogs.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_system_actionlogs.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_logrotation.ini b/administrator/language/en-GB/en-GB.plg_system_logrotation.ini index d25b74b27274c..04b11e779df28 100644 --- a/administrator/language/en-GB/en-GB.plg_system_logrotation.ini +++ b/administrator/language/en-GB/en-GB.plg_system_logrotation.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini b/administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini index c03ea875d9b6d..70e8b265ce3e1 100644 --- a/administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini index 8c2d4b4ad7360..ebb082acdec0b 100644 --- a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini +++ b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.sys.ini b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.sys.ini index 9e5e187496742..ed47b6280afed 100644 --- a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_user_terms.ini b/administrator/language/en-GB/en-GB.plg_user_terms.ini index 7ddb767a6fed8..8af530b750d08 100644 --- a/administrator/language/en-GB/en-GB.plg_user_terms.ini +++ b/administrator/language/en-GB/en-GB.plg_user_terms.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.plg_user_terms.sys.ini b/administrator/language/en-GB/en-GB.plg_user_terms.sys.ini index 334230cb3885f..dc00caf20fbe9 100644 --- a/administrator/language/en-GB/en-GB.plg_user_terms.sys.ini +++ b/administrator/language/en-GB/en-GB.plg_user_terms.sys.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/administrator/language/en-GB/en-GB.xml b/administrator/language/en-GB/en-GB.xml index ab0dd82bf2b93..ddc634f485e57 100644 --- a/administrator/language/en-GB/en-GB.xml +++ b/administrator/language/en-GB/en-GB.xml @@ -2,7 +2,7 @@ English (en-GB) 4.0.0 - March 2019 + April 2019 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/language/en-GB/install.xml b/administrator/language/en-GB/install.xml index 099e1c7eb0c85..ce2519b6abd59 100644 --- a/administrator/language/en-GB/install.xml +++ b/administrator/language/en-GB/install.xml @@ -3,7 +3,7 @@ English (en-GB) en-GB 4.0.0 - March 2019 + April 2019 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/manifests/files/joomla.xml b/administrator/manifests/files/joomla.xml index 006df447eee13..2e779aceb6f57 100644 --- a/administrator/manifests/files/joomla.xml +++ b/administrator/manifests/files/joomla.xml @@ -6,8 +6,8 @@ www.joomla.org (C) 2005 - 2019 Open Source Matters. All rights reserved GNU General Public License version 2 or later; see LICENSE.txt - 4.0.0-alpha8-dev - March 2019 + 4.0.0-alpha8 + April 2019 FILES_JOOMLA_XML_DESCRIPTION administrator/components/com_admin/script.php diff --git a/administrator/manifests/packages/pkg_en-GB.xml b/administrator/manifests/packages/pkg_en-GB.xml index eff82aa029378..f41c651edca2c 100644 --- a/administrator/manifests/packages/pkg_en-GB.xml +++ b/administrator/manifests/packages/pkg_en-GB.xml @@ -3,7 +3,7 @@ English (en-GB) Language Pack en-GB 4.0.0.1 - March 2019 + April 2019 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/modules/mod_latestactions/helper.php b/administrator/modules/mod_latestactions/helper.php index 8f2fce6a095eb..d47d16595a7e8 100644 --- a/administrator/modules/mod_latestactions/helper.php +++ b/administrator/modules/mod_latestactions/helper.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_latestactions * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/modules/mod_latestactions/mod_latestactions.php b/administrator/modules/mod_latestactions/mod_latestactions.php index 4a125d42cd665..298c2c5435ddd 100644 --- a/administrator/modules/mod_latestactions/mod_latestactions.php +++ b/administrator/modules/mod_latestactions/mod_latestactions.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_latestactions * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/modules/mod_latestactions/mod_latestactions.xml b/administrator/modules/mod_latestactions/mod_latestactions.xml index 708aee6b32aa5..1b3d911e0a1af 100644 --- a/administrator/modules/mod_latestactions/mod_latestactions.xml +++ b/administrator/modules/mod_latestactions/mod_latestactions.xml @@ -3,7 +3,7 @@ mod_latestactions Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/administrator/modules/mod_latestactions/tmpl/default.php b/administrator/modules/mod_latestactions/tmpl/default.php index d00e2c551d2fb..3854be6e91d48 100644 --- a/administrator/modules/mod_latestactions/tmpl/default.php +++ b/administrator/modules/mod_latestactions/tmpl/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_latestactions * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/modules/mod_privacy_dashboard/helper.php b/administrator/modules/mod_privacy_dashboard/helper.php index 454d0cf9d0ec0..551d3e034be90 100644 --- a/administrator/modules/mod_privacy_dashboard/helper.php +++ b/administrator/modules/mod_privacy_dashboard/helper.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_privacy_dashboard * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.php b/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.php index e3cde5595cab3..7320064d409d4 100644 --- a/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.php +++ b/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_privacy_dashboard * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.xml b/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.xml index 0075c4777b9c8..84ce113dee705 100644 --- a/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.xml +++ b/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.xml @@ -3,7 +3,7 @@ mod_privacy_dashboard Joomla! Project June 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/administrator/modules/mod_privacy_dashboard/tmpl/default.php b/administrator/modules/mod_privacy_dashboard/tmpl/default.php index 6b5059eddf433..c9b78ddbadfc4 100644 --- a/administrator/modules/mod_privacy_dashboard/tmpl/default.php +++ b/administrator/modules/mod_privacy_dashboard/tmpl/default.php @@ -3,7 +3,7 @@ * @package Joomla.Administrator * @subpackage mod_privacy_dashboard * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/build/media_source/mod_menu/js/menu.es6.js b/build/media_source/mod_menu/js/menu.es6.js index 5ed4492a534c3..554b47985f057 100644 --- a/build/media_source/mod_menu/js/menu.es6.js +++ b/build/media_source/mod_menu/js/menu.es6.js @@ -1,5 +1,5 @@ /** - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/build/media_source/plg_captcha_recaptcha_invisible/js/recaptcha.js b/build/media_source/plg_captcha_recaptcha_invisible/js/recaptcha.js index 199e2ec1a9c5d..fc8db49afd4fa 100644 --- a/build/media_source/plg_captcha_recaptcha_invisible/js/recaptcha.js +++ b/build/media_source/plg_captcha_recaptcha_invisible/js/recaptcha.js @@ -1,6 +1,6 @@ /** * @package Joomla.JavaScript - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ window.JoomlaInitReCaptchaInvisible = function() { diff --git a/build/media_source/plg_quickicon_privacycheck/js/privacycheck.js b/build/media_source/plg_quickicon_privacycheck/js/privacycheck.js index 221fb20036f96..b8fbf2496dd56 100644 --- a/build/media_source/plg_quickicon_privacycheck/js/privacycheck.js +++ b/build/media_source/plg_quickicon_privacycheck/js/privacycheck.js @@ -1,5 +1,5 @@ /** - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/Controller/DisplayController.php b/components/com_privacy/Controller/DisplayController.php index f0dc192c2e744..a3a3d67a1776a 100644 --- a/components/com_privacy/Controller/DisplayController.php +++ b/components/com_privacy/Controller/DisplayController.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/Controller/RequestController.php b/components/com_privacy/Controller/RequestController.php index dfc319012f1e8..580a64463e280 100644 --- a/components/com_privacy/Controller/RequestController.php +++ b/components/com_privacy/Controller/RequestController.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/Model/ConfirmModel.php b/components/com_privacy/Model/ConfirmModel.php index a491e742297f8..31f87a0e37471 100644 --- a/components/com_privacy/Model/ConfirmModel.php +++ b/components/com_privacy/Model/ConfirmModel.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -233,7 +233,7 @@ protected function populateState() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private function getActionlogModel(): \ActionlogsModelActionlog { diff --git a/components/com_privacy/Model/RemindModel.php b/components/com_privacy/Model/RemindModel.php index 12c382cae498f..4a895bbd05e52 100644 --- a/components/com_privacy/Model/RemindModel.php +++ b/components/com_privacy/Model/RemindModel.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/Model/RequestModel.php b/components/com_privacy/Model/RequestModel.php index c1766a3ec350b..089dc426f32bb 100644 --- a/components/com_privacy/Model/RequestModel.php +++ b/components/com_privacy/Model/RequestModel.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -278,7 +278,7 @@ protected function populateState() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private function getActionlogModel(): \ActionlogsModelActionlog { diff --git a/components/com_privacy/Service/Router.php b/components/com_privacy/Service/Router.php index b6620730676a1..6450c7fd121bf 100644 --- a/components/com_privacy/Service/Router.php +++ b/components/com_privacy/Service/Router.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/View/Confirm/HtmlView.php b/components/com_privacy/View/Confirm/HtmlView.php index 78f74e254ce7b..14f5596967782 100644 --- a/components/com_privacy/View/Confirm/HtmlView.php +++ b/components/com_privacy/View/Confirm/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/View/Remind/HtmlView.php b/components/com_privacy/View/Remind/HtmlView.php index 050e0884e7898..2d5697d3ab604 100644 --- a/components/com_privacy/View/Remind/HtmlView.php +++ b/components/com_privacy/View/Remind/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/View/Request/HtmlView.php b/components/com_privacy/View/Request/HtmlView.php index 1364b423390f9..f873a7bdfee5f 100644 --- a/components/com_privacy/View/Request/HtmlView.php +++ b/components/com_privacy/View/Request/HtmlView.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/tmpl/confirm/default.php b/components/com_privacy/tmpl/confirm/default.php index 8cbf6e703037b..182e9915300a5 100644 --- a/components/com_privacy/tmpl/confirm/default.php +++ b/components/com_privacy/tmpl/confirm/default.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/tmpl/remind/default.php b/components/com_privacy/tmpl/remind/default.php index a438c89616713..e7e6189f13014 100644 --- a/components/com_privacy/tmpl/remind/default.php +++ b/components/com_privacy/tmpl/remind/default.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_privacy/tmpl/request/default.php b/components/com_privacy/tmpl/request/default.php index 8eb9a1bbb256f..a89d2ed3c0bed 100644 --- a/components/com_privacy/tmpl/request/default.php +++ b/components/com_privacy/tmpl/request/default.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage com_privacy * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/components/com_users/Controller/ProfileController.php b/components/com_users/Controller/ProfileController.php index caea4ad5269e3..24c5f49d7223b 100644 --- a/components/com_users/Controller/ProfileController.php +++ b/components/com_users/Controller/ProfileController.php @@ -255,7 +255,7 @@ public function save() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function cancel() { diff --git a/components/com_users/layouts/joomla/form/renderfield.php b/components/com_users/layouts/joomla/form/renderfield.php index d86dded0df3ef..de26a75f95be3 100644 --- a/components/com_users/layouts/joomla/form/renderfield.php +++ b/components/com_users/layouts/joomla/form/renderfield.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage Layout * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/installation/language/en-GB/en-GB.xml b/installation/language/en-GB/en-GB.xml index a6385ab5158cc..fbd27481822fe 100644 --- a/installation/language/en-GB/en-GB.xml +++ b/installation/language/en-GB/en-GB.xml @@ -4,7 +4,7 @@ client="installation"> English (United Kingdom) 4.0.0 - March 2019 + April 2019 Joomla! Project Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/language/en-GB/en-GB.com_privacy.ini b/language/en-GB/en-GB.com_privacy.ini index 4f93e9774eecf..f7e6b18137749 100644 --- a/language/en-GB/en-GB.com_privacy.ini +++ b/language/en-GB/en-GB.com_privacy.ini @@ -1,5 +1,5 @@ ; Joomla! Project -; Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. +; Copyright (C) 2005 - 2019 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 diff --git a/language/en-GB/en-GB.xml b/language/en-GB/en-GB.xml index bf88e5881f99e..adfb34c7ad4e8 100644 --- a/language/en-GB/en-GB.xml +++ b/language/en-GB/en-GB.xml @@ -2,7 +2,7 @@ English (en-GB) 4.0.0 - March 2019 + April 2019 Joomla! Project admin@joomla.org www.joomla.org diff --git a/language/en-GB/install.xml b/language/en-GB/install.xml index deaea287ee627..9a7fa0052dea1 100644 --- a/language/en-GB/install.xml +++ b/language/en-GB/install.xml @@ -3,7 +3,7 @@ English (en-GB) en-GB 4.0.0 - March 2019 + April 2019 Joomla! Project admin@joomla.org www.joomla.org diff --git a/layouts/joomla/installer/changelog.php b/layouts/joomla/installer/changelog.php index 67de92f2f152a..3a0ddca65ca58 100644 --- a/layouts/joomla/installer/changelog.php +++ b/layouts/joomla/installer/changelog.php @@ -3,7 +3,7 @@ * @package Joomla.Site * @subpackage Layout * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/libraries/src/Changelog/Changelog.php b/libraries/src/Changelog/Changelog.php index bcea38e6a613c..f9a9bdf4266a9 100644 --- a/libraries/src/Changelog/Changelog.php +++ b/libraries/src/Changelog/Changelog.php @@ -2,7 +2,7 @@ /** * Joomla! Content Management System * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -23,7 +23,7 @@ /** * Changelog class. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ class Changelog extends CMSObject { @@ -31,7 +31,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var string - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $element; @@ -39,7 +39,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var string - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $type; @@ -47,7 +47,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var string - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $version; @@ -55,7 +55,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $security = array(); @@ -63,7 +63,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $fix = array(); @@ -71,7 +71,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $language = array(); @@ -79,7 +79,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $addition = array(); @@ -87,7 +87,7 @@ class Changelog extends CMSObject * Update manifest `` elements * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $change = array(); @@ -95,7 +95,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $remove = array(); @@ -103,7 +103,7 @@ class Changelog extends CMSObject * Update manifest `` element * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $note = array(); @@ -111,7 +111,7 @@ class Changelog extends CMSObject * List of node items * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private $items = array(); @@ -119,7 +119,7 @@ class Changelog extends CMSObject * Resource handle for the XML Parser * * @var resource - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $xmlParser; @@ -127,7 +127,7 @@ class Changelog extends CMSObject * Element call stack * * @var array - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $stack = array('base'); @@ -135,7 +135,7 @@ class Changelog extends CMSObject * Object containing the current update data * * @var \stdClass - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $currentChangelog; @@ -143,7 +143,7 @@ class Changelog extends CMSObject * The version to match the changelog * * @var string - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private $matchVersion = ''; @@ -151,7 +151,7 @@ class Changelog extends CMSObject * Object containing the latest changelog data * * @var \stdClass - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $latest; @@ -160,7 +160,7 @@ class Changelog extends CMSObject * * @return object * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected function getStackLocation() { @@ -172,7 +172,7 @@ protected function getStackLocation() * * @return string * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected function getLastTag() { @@ -342,7 +342,7 @@ public function characterData($parser, $data) * * @return boolean True on success * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadFromXml($url) { diff --git a/libraries/src/Console/Loader/WritableContainerLoader.php b/libraries/src/Console/Loader/WritableContainerLoader.php index 204be30ea2c07..7b723c86874b6 100644 --- a/libraries/src/Console/Loader/WritableContainerLoader.php +++ b/libraries/src/Console/Loader/WritableContainerLoader.php @@ -17,7 +17,7 @@ /** * PSR-11 compatible writable command loader. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ final class WritableContainerLoader implements WritableLoaderInterface { @@ -25,7 +25,7 @@ final class WritableContainerLoader implements WritableLoaderInterface * The service container. * * @var ContainerInterface - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private $container; @@ -33,7 +33,7 @@ final class WritableContainerLoader implements WritableLoaderInterface * The command name to service ID map. * * @var string[] - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ private $commandMap; @@ -43,7 +43,7 @@ final class WritableContainerLoader implements WritableLoaderInterface * @param ContainerInterface $container A container from which to load command services. * @param array $commandMap An array with command names as keys and service IDs as values. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function __construct(ContainerInterface $container, array $commandMap) { @@ -59,7 +59,7 @@ public function __construct(ContainerInterface $container, array $commandMap) * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function add(string $commandName, string $className) { @@ -73,7 +73,7 @@ public function add(string $commandName, string $className) * * @return AbstractCommand * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 * @throws CommandNotFoundException */ public function get(string $name): AbstractCommand @@ -91,7 +91,7 @@ public function get(string $name): AbstractCommand * * @return string[] * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function getNames(): array { @@ -105,7 +105,7 @@ public function getNames(): array * * @return boolean * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function has($name): bool { diff --git a/libraries/src/Console/Loader/WritableLoaderInterface.php b/libraries/src/Console/Loader/WritableLoaderInterface.php index 31b96a5725cb0..91f11dd139169 100644 --- a/libraries/src/Console/Loader/WritableLoaderInterface.php +++ b/libraries/src/Console/Loader/WritableLoaderInterface.php @@ -15,7 +15,7 @@ /** * Interface defining a writable command loader. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ interface WritableLoaderInterface extends LoaderInterface { @@ -27,7 +27,7 @@ interface WritableLoaderInterface extends LoaderInterface * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function add(string $commandName, string $className); } diff --git a/libraries/src/Extension/ExtensionHelper.php b/libraries/src/Extension/ExtensionHelper.php index ca0bc1fd82639..0bac26af06db6 100644 --- a/libraries/src/Extension/ExtensionHelper.php +++ b/libraries/src/Extension/ExtensionHelper.php @@ -343,7 +343,7 @@ public static function checkIfCoreExtension($type, $element, $client_id = 0, $fo * * @return \stdClass The object * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public static function getExtensionRecord($name) { diff --git a/libraries/src/Form/Rule/ExistsRule.php b/libraries/src/Form/Rule/ExistsRule.php index 98499f4e382d0..ca6ef83466e4a 100644 --- a/libraries/src/Form/Rule/ExistsRule.php +++ b/libraries/src/Form/Rule/ExistsRule.php @@ -2,7 +2,7 @@ /** * Joomla! Content Management System * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/libraries/src/Installer/InstallerAdapter.php b/libraries/src/Installer/InstallerAdapter.php index ecd6725677254..b62f009bb02ae 100644 --- a/libraries/src/Installer/InstallerAdapter.php +++ b/libraries/src/Installer/InstallerAdapter.php @@ -32,7 +32,7 @@ abstract class InstallerAdapter * Changelog URL of extensions * * @var string - * @since __DEPLOY_VERSION__ + * @since 4.0.0 * */ protected $changelogurl = null; diff --git a/libraries/src/Service/Provider/User.php b/libraries/src/Service/Provider/User.php index c172a734a92d6..b3c25d8efa7ee 100644 --- a/libraries/src/Service/Provider/User.php +++ b/libraries/src/Service/Provider/User.php @@ -2,7 +2,7 @@ /** * Joomla! Content Management System * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/libraries/src/Table/Module.php b/libraries/src/Table/Module.php index 719e4544cf08a..eba2586974ce9 100644 --- a/libraries/src/Table/Module.php +++ b/libraries/src/Table/Module.php @@ -27,7 +27,7 @@ class Module extends Table * Indicates that columns fully support the NULL value in the database * * @var boolean - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $_supportNullValue = true; diff --git a/libraries/src/Table/Table.php b/libraries/src/Table/Table.php index 20ba8f0cb5458..76f6eb736ffe4 100644 --- a/libraries/src/Table/Table.php +++ b/libraries/src/Table/Table.php @@ -126,7 +126,7 @@ abstract class Table extends CMSObject implements \JTableInterface, DispatcherAw * Indicates that columns fully support the NULL value in the database * * @var boolean - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $_supportNullValue = false; diff --git a/libraries/src/User/UserFactory.php b/libraries/src/User/UserFactory.php index 6cb9014a3d880..d3d1894f31d44 100644 --- a/libraries/src/User/UserFactory.php +++ b/libraries/src/User/UserFactory.php @@ -2,7 +2,7 @@ /** * Joomla! Content Management System * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -15,7 +15,7 @@ /** * Default factory for creating User objects * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ class UserFactory implements UserFactoryInterface { @@ -43,7 +43,7 @@ public function __construct(DatabaseInterface $db) * * @return User * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadUserById(int $id): User { @@ -57,7 +57,7 @@ public function loadUserById(int $id): User * * @return User * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadUserByUsername(string $username): User { diff --git a/libraries/src/User/UserFactoryInterface.php b/libraries/src/User/UserFactoryInterface.php index c06f1b1a8c993..fa776c8b0cf35 100644 --- a/libraries/src/User/UserFactoryInterface.php +++ b/libraries/src/User/UserFactoryInterface.php @@ -2,7 +2,7 @@ /** * Joomla! Content Management System * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -13,7 +13,7 @@ /** * Interface defining a factory which can create User objects * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ interface UserFactoryInterface { @@ -24,7 +24,7 @@ interface UserFactoryInterface * * @return User * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadUserById(int $id): User; @@ -35,7 +35,7 @@ public function loadUserById(int $id): User; * * @return User * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function loadUserByUsername(string $username): User; } diff --git a/libraries/src/Version.php b/libraries/src/Version.php index 8498850e0f782..349249c56a1ea 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -60,7 +60,7 @@ final class Version * @var string * @since 3.8.0 */ - const EXTRA_VERSION = 'alpha8-dev'; + const EXTRA_VERSION = 'alpha8'; /** * Development status. @@ -68,7 +68,7 @@ final class Version * @var string * @since 3.5 */ - const DEV_STATUS = 'Development'; + const DEV_STATUS = 'Alpha'; /** * Code name. @@ -84,7 +84,7 @@ final class Version * @var string * @since 3.5 */ - const RELDATE = '9-March-2019'; + const RELDATE = '18-April-2019'; /** * Release time. @@ -92,7 +92,7 @@ final class Version * @var string * @since 3.5 */ - const RELTIME = '13:41'; + const RELTIME = '14:19'; /** * Release timezone. diff --git a/plugins/actionlog/joomla/joomla.php b/plugins/actionlog/joomla/joomla.php index a745c302f67d7..428be4d1ab772 100644 --- a/plugins/actionlog/joomla/joomla.php +++ b/plugins/actionlog/joomla/joomla.php @@ -3,7 +3,7 @@ * @package Joomla.Plugins * @subpackage System.actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/actionlog/joomla/joomla.xml b/plugins/actionlog/joomla/joomla.xml index 80ac50a0ac823..8d5b117b11359 100644 --- a/plugins/actionlog/joomla/joomla.xml +++ b/plugins/actionlog/joomla/joomla.xml @@ -3,7 +3,7 @@ PLG_ACTIONLOG_JOOMLA Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/authentication/joomla/joomla.php b/plugins/authentication/joomla/joomla.php index 5bb40b48b324c..e9e7dc410efe7 100644 --- a/plugins/authentication/joomla/joomla.php +++ b/plugins/authentication/joomla/joomla.php @@ -28,7 +28,7 @@ class PlgAuthenticationJoomla extends CMSPlugin * Application object * * @var \Joomla\CMS\Application\CMSApplication - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $app; @@ -36,7 +36,7 @@ class PlgAuthenticationJoomla extends CMSPlugin * Database object * * @var \Joomla\Database\DatabaseDriver - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $db; diff --git a/plugins/captcha/recaptcha_invisible/recaptcha_invisible.php b/plugins/captcha/recaptcha_invisible/recaptcha_invisible.php index 1c95070f8e242..ab3ab1aa85cca 100644 --- a/plugins/captcha/recaptcha_invisible/recaptcha_invisible.php +++ b/plugins/captcha/recaptcha_invisible/recaptcha_invisible.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Captcha * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/captcha/recaptcha_invisible/recaptcha_invisible.xml b/plugins/captcha/recaptcha_invisible/recaptcha_invisible.xml index f0a1275faa8f9..e5b90b168a941 100644 --- a/plugins/captcha/recaptcha_invisible/recaptcha_invisible.xml +++ b/plugins/captcha/recaptcha_invisible/recaptcha_invisible.xml @@ -6,7 +6,7 @@ Joomla! Project admin@joomla.org www.joomla.org - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt PLG_CAPTCHA_RECAPTCHA_INVISIBLE_XML_DESCRIPTION diff --git a/plugins/content/confirmconsent/confirmconsent.php b/plugins/content/confirmconsent/confirmconsent.php index 56b38e31ac295..40979d0d218f2 100644 --- a/plugins/content/confirmconsent/confirmconsent.php +++ b/plugins/content/confirmconsent/confirmconsent.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Content.confirmconsent * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/content/confirmconsent/confirmconsent.xml b/plugins/content/confirmconsent/confirmconsent.xml index dfec50159c96c..3e9e0dc695353 100644 --- a/plugins/content/confirmconsent/confirmconsent.xml +++ b/plugins/content/confirmconsent/confirmconsent.xml @@ -3,7 +3,7 @@ plg_content_confirmconsent Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/content/pagebreak/tmpl/toc.php b/plugins/content/pagebreak/tmpl/toc.php index df71c3d8f4a9b..8255c2d0de481 100644 --- a/plugins/content/pagebreak/tmpl/toc.php +++ b/plugins/content/pagebreak/tmpl/toc.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Content.pagebreak * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/fields/repeatable/repeatable.php b/plugins/fields/repeatable/repeatable.php index 8697b1e8ed3a9..abb52b8f48d7a 100644 --- a/plugins/fields/repeatable/repeatable.php +++ b/plugins/fields/repeatable/repeatable.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Fields.Repeatable * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/fields/repeatable/repeatable.xml b/plugins/fields/repeatable/repeatable.xml index 2ff109d3cca93..65a6a9ce36455 100644 --- a/plugins/fields/repeatable/repeatable.xml +++ b/plugins/fields/repeatable/repeatable.xml @@ -3,7 +3,7 @@ plg_fields_repeatable Joomla! Project April 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/fields/repeatable/tmpl/repeatable.php b/plugins/fields/repeatable/tmpl/repeatable.php index c05a04a94a6da..6b617d95786cd 100644 --- a/plugins/fields/repeatable/tmpl/repeatable.php +++ b/plugins/fields/repeatable/tmpl/repeatable.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Fields.Repeatable * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/actionlogs/actionlogs.php b/plugins/privacy/actionlogs/actionlogs.php index 1a85affd0454c..6ef89d6857e16 100644 --- a/plugins/privacy/actionlogs/actionlogs.php +++ b/plugins/privacy/actionlogs/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/actionlogs/actionlogs.xml b/plugins/privacy/actionlogs/actionlogs.xml index f37879f35e81b..c617563ad671e 100644 --- a/plugins/privacy/actionlogs/actionlogs.xml +++ b/plugins/privacy/actionlogs/actionlogs.xml @@ -3,7 +3,7 @@ plg_privacy_actionlogs Joomla! Project July 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/privacy/consents/consents.php b/plugins/privacy/consents/consents.php index 7e1f542fe9bf4..863a7d3b5c380 100644 --- a/plugins/privacy/consents/consents.php +++ b/plugins/privacy/consents/consents.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.consents * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/consents/consents.xml b/plugins/privacy/consents/consents.xml index b245d3f3e80d8..154df6212c5e9 100644 --- a/plugins/privacy/consents/consents.xml +++ b/plugins/privacy/consents/consents.xml @@ -3,7 +3,7 @@ plg_privacy_consents Joomla! Project July 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/privacy/contact/contact.php b/plugins/privacy/contact/contact.php index 0713353ed9531..eb4296dd16569 100644 --- a/plugins/privacy/contact/contact.php +++ b/plugins/privacy/contact/contact.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.contact * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/contact/contact.xml b/plugins/privacy/contact/contact.xml index 2de5eed47f655..5a8a146b46fab 100644 --- a/plugins/privacy/contact/contact.xml +++ b/plugins/privacy/contact/contact.xml @@ -3,7 +3,7 @@ plg_privacy_contact Joomla! Project July 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/privacy/content/content.php b/plugins/privacy/content/content.php index 2bdd982032f46..108fff232841e 100644 --- a/plugins/privacy/content/content.php +++ b/plugins/privacy/content/content.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.uscontenter * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/content/content.xml b/plugins/privacy/content/content.xml index a2114f106c31c..dd05a30069305 100644 --- a/plugins/privacy/content/content.xml +++ b/plugins/privacy/content/content.xml @@ -3,7 +3,7 @@ plg_privacy_content Joomla! Project July 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/privacy/message/message.php b/plugins/privacy/message/message.php index 583a2484456e2..b878b561ead32 100644 --- a/plugins/privacy/message/message.php +++ b/plugins/privacy/message/message.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.message * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/message/message.xml b/plugins/privacy/message/message.xml index 9a7f19f6f1548..637573fd80a19 100644 --- a/plugins/privacy/message/message.xml +++ b/plugins/privacy/message/message.xml @@ -3,7 +3,7 @@ plg_privacy_message Joomla! Project July 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/privacy/user/user.php b/plugins/privacy/user/user.php index a2c1b34bf7659..b6a69c8b5dccf 100644 --- a/plugins/privacy/user/user.php +++ b/plugins/privacy/user/user.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage Privacy.user * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/privacy/user/user.xml b/plugins/privacy/user/user.xml index 06277aad43f93..4414859b08aef 100644 --- a/plugins/privacy/user/user.xml +++ b/plugins/privacy/user/user.xml @@ -3,7 +3,7 @@ plg_privacy_user Joomla! Project May 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/quickicon/privacycheck/privacycheck.php b/plugins/quickicon/privacycheck/privacycheck.php index 7cf535a0330d2..332fdc185d8f6 100644 --- a/plugins/quickicon/privacycheck/privacycheck.php +++ b/plugins/quickicon/privacycheck/privacycheck.php @@ -34,7 +34,7 @@ class PlgQuickiconPrivacyCheck extends CMSPlugin * Application object. * * @var \Joomla\CMS\Application\CMSApplication - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $app; diff --git a/plugins/quickicon/privacycheck/privacycheck.xml b/plugins/quickicon/privacycheck/privacycheck.xml index 4825bf588eaa5..7916c1219c196 100644 --- a/plugins/quickicon/privacycheck/privacycheck.xml +++ b/plugins/quickicon/privacycheck/privacycheck.xml @@ -3,7 +3,7 @@ plg_quickicon_privacycheck Joomla! Project June 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/system/actionlogs/actionlogs.php b/plugins/system/actionlogs/actionlogs.php index 59cd0d4288b2c..4c7f4bd6d699a 100644 --- a/plugins/system/actionlogs/actionlogs.php +++ b/plugins/system/actionlogs/actionlogs.php @@ -3,7 +3,7 @@ * @package Joomla.Plugins * @subpackage System.actionlogs * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/system/actionlogs/actionlogs.xml b/plugins/system/actionlogs/actionlogs.xml index d69bae3524cb4..566a02c67120f 100644 --- a/plugins/system/actionlogs/actionlogs.xml +++ b/plugins/system/actionlogs/actionlogs.xml @@ -3,7 +3,7 @@ PLG_SYSTEM_ACTIONLOGS Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/system/languagecode/languagecode.php b/plugins/system/languagecode/languagecode.php index da1dd87e221dd..8192cc61a66c0 100644 --- a/plugins/system/languagecode/languagecode.php +++ b/plugins/system/languagecode/languagecode.php @@ -25,7 +25,7 @@ class PlgSystemLanguagecode extends CMSPlugin * Application object * * @var \Joomla\CMS\Application\CMSApplication - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ protected $app; diff --git a/plugins/system/logrotation/logrotation.php b/plugins/system/logrotation/logrotation.php index b9bba6a021296..0ff3caad5d957 100644 --- a/plugins/system/logrotation/logrotation.php +++ b/plugins/system/logrotation/logrotation.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage System.logrotation * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/system/logrotation/logrotation.xml b/plugins/system/logrotation/logrotation.xml index 6b826a8d800f7..9168300ff29ff 100644 --- a/plugins/system/logrotation/logrotation.xml +++ b/plugins/system/logrotation/logrotation.xml @@ -3,7 +3,7 @@ plg_system_logrotation Joomla! Project May 2018 - Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved. + Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/system/privacyconsent/field/privacy.php b/plugins/system/privacyconsent/field/privacy.php index f9fe6391664cf..ebca3cd25fb22 100644 --- a/plugins/system/privacyconsent/field/privacy.php +++ b/plugins/system/privacyconsent/field/privacy.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage System.privacyconsent * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/system/privacyconsent/privacyconsent.php b/plugins/system/privacyconsent/privacyconsent.php index 3cbd42b84d601..f9e0c2182b40a 100644 --- a/plugins/system/privacyconsent/privacyconsent.php +++ b/plugins/system/privacyconsent/privacyconsent.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage System.privacyconsent * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/system/privacyconsent/privacyconsent.xml b/plugins/system/privacyconsent/privacyconsent.xml index f995ddc8686b2..10a48bd092e59 100644 --- a/plugins/system/privacyconsent/privacyconsent.xml +++ b/plugins/system/privacyconsent/privacyconsent.xml @@ -3,7 +3,7 @@ plg_system_privacyconsent Joomla! Project April 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/plugins/system/skipto/skipto.php b/plugins/system/skipto/skipto.php index 601c49e34b793..3adcdae2826fe 100644 --- a/plugins/system/skipto/skipto.php +++ b/plugins/system/skipto/skipto.php @@ -16,7 +16,7 @@ /** * Skipto plugin to add accessible keyboard navigation to the site and administrator templates. * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ class PlgSystemSkipto extends CMSPlugin { @@ -41,7 +41,7 @@ class PlgSystemSkipto extends CMSPlugin * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function onBeforeCompileHead() { diff --git a/plugins/system/stats/stats.php b/plugins/system/stats/stats.php index 16b8e2aad7c3f..856614b0cd8d8 100644 --- a/plugins/system/stats/stats.php +++ b/plugins/system/stats/stats.php @@ -113,7 +113,7 @@ public function onAfterInitialise() * * @return void * - * @since __DEPLOY_VERSION__ + * @since 4.0.0 */ public function onAfterDispatch() { diff --git a/plugins/user/terms/field/terms.php b/plugins/user/terms/field/terms.php index 9ea9fc8435ba6..1bb3b6aa4576b 100644 --- a/plugins/user/terms/field/terms.php +++ b/plugins/user/terms/field/terms.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage User.terms * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/user/terms/terms.php b/plugins/user/terms/terms.php index 92fb3448120fa..6e4e9c35e67f5 100644 --- a/plugins/user/terms/terms.php +++ b/plugins/user/terms/terms.php @@ -3,7 +3,7 @@ * @package Joomla.Plugin * @subpackage User.terms * - * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/plugins/user/terms/terms.xml b/plugins/user/terms/terms.xml index f3c8a9286bd03..55a552bc77135 100644 --- a/plugins/user/terms/terms.xml +++ b/plugins/user/terms/terms.xml @@ -3,7 +3,7 @@ plg_user_terms Joomla! Project June 2018 - (C) 2005 - 2018 Open Source Matters. All rights reserved. + (C) 2005 - 2019 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org diff --git a/tests/Unit/Libraries/Cms/Access/RuleTest.php b/tests/Unit/Libraries/Cms/Access/RuleTest.php index 30d8421f026bb..8a44b62c019c5 100644 --- a/tests/Unit/Libraries/Cms/Access/RuleTest.php +++ b/tests/Unit/Libraries/Cms/Access/RuleTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Access * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Access/RulesTest.php b/tests/Unit/Libraries/Cms/Access/RulesTest.php index 73a8adb684bec..8396b55993680 100644 --- a/tests/Unit/Libraries/Cms/Access/RulesTest.php +++ b/tests/Unit/Libraries/Cms/Access/RulesTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Access * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Console/Loader/WritableContainerLoaderTest.php b/tests/Unit/Libraries/Cms/Console/Loader/WritableContainerLoaderTest.php index 3fd0f45468bab..2b5ecec38ce43 100644 --- a/tests/Unit/Libraries/Cms/Console/Loader/WritableContainerLoaderTest.php +++ b/tests/Unit/Libraries/Cms/Console/Loader/WritableContainerLoaderTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Console * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Document/DocumentTest.php b/tests/Unit/Libraries/Cms/Document/DocumentTest.php index d2c4d1f5ac663..fb54466b093ef 100644 --- a/tests/Unit/Libraries/Cms/Document/DocumentTest.php +++ b/tests/Unit/Libraries/Cms/Document/DocumentTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Document * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Environment/BrowserTest.php b/tests/Unit/Libraries/Cms/Environment/BrowserTest.php index a39df0ab06c04..62447af2232be 100644 --- a/tests/Unit/Libraries/Cms/Environment/BrowserTest.php +++ b/tests/Unit/Libraries/Cms/Environment/BrowserTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Environment * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/FeedEntryTest.php b/tests/Unit/Libraries/Cms/Feed/FeedEntryTest.php index 5c6cc8c533a23..0bc96877d89a4 100644 --- a/tests/Unit/Libraries/Cms/Feed/FeedEntryTest.php +++ b/tests/Unit/Libraries/Cms/Feed/FeedEntryTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/FeedFactoryTest.php b/tests/Unit/Libraries/Cms/Feed/FeedFactoryTest.php index 4b8627ff510bf..5c2aca85589bf 100644 --- a/tests/Unit/Libraries/Cms/Feed/FeedFactoryTest.php +++ b/tests/Unit/Libraries/Cms/Feed/FeedFactoryTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/FeedLinkTest.php b/tests/Unit/Libraries/Cms/Feed/FeedLinkTest.php index 6e7dd1894261b..41ca94d580358 100644 --- a/tests/Unit/Libraries/Cms/Feed/FeedLinkTest.php +++ b/tests/Unit/Libraries/Cms/Feed/FeedLinkTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/FeedParserTest.php b/tests/Unit/Libraries/Cms/Feed/FeedParserTest.php index be3ec1765d109..aae41899d959d 100644 --- a/tests/Unit/Libraries/Cms/Feed/FeedParserTest.php +++ b/tests/Unit/Libraries/Cms/Feed/FeedParserTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/FeedTest.php b/tests/Unit/Libraries/Cms/Feed/FeedTest.php index d761449f141aa..28de45fbf50b6 100644 --- a/tests/Unit/Libraries/Cms/Feed/FeedTest.php +++ b/tests/Unit/Libraries/Cms/Feed/FeedTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/Parser/AtomParserTest.php b/tests/Unit/Libraries/Cms/Feed/Parser/AtomParserTest.php index d59a979ebe348..3a7d6a1757563 100644 --- a/tests/Unit/Libraries/Cms/Feed/Parser/AtomParserTest.php +++ b/tests/Unit/Libraries/Cms/Feed/Parser/AtomParserTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Feed/Parser/RssParserTest.php b/tests/Unit/Libraries/Cms/Feed/Parser/RssParserTest.php index a139b7127507e..bf66210f68f63 100644 --- a/tests/Unit/Libraries/Cms/Feed/Parser/RssParserTest.php +++ b/tests/Unit/Libraries/Cms/Feed/Parser/RssParserTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Feed * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Html/JHtmlDateTest.php b/tests/Unit/Libraries/Cms/Html/JHtmlDateTest.php index ecc88e26fdb6d..4e1132c01e35c 100644 --- a/tests/Unit/Libraries/Cms/Html/JHtmlDateTest.php +++ b/tests/Unit/Libraries/Cms/Html/JHtmlDateTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage HTML * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Html/JHtmlNumberTest.php b/tests/Unit/Libraries/Cms/Html/JHtmlNumberTest.php index 67a0ee35de0b3..c1230d300bbdc 100644 --- a/tests/Unit/Libraries/Cms/Html/JHtmlNumberTest.php +++ b/tests/Unit/Libraries/Cms/Html/JHtmlNumberTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage HTML * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Html/JHtmlStringTest.php b/tests/Unit/Libraries/Cms/Html/JHtmlStringTest.php index 1297ba2950e46..2dadcb84ee2bf 100644 --- a/tests/Unit/Libraries/Cms/Html/JHtmlStringTest.php +++ b/tests/Unit/Libraries/Cms/Html/JHtmlStringTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage HTML * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Html/JHtmlTelTest.php b/tests/Unit/Libraries/Cms/Html/JHtmlTelTest.php index f6d24d0c1d307..2e5796e7b3b58 100644 --- a/tests/Unit/Libraries/Cms/Html/JHtmlTelTest.php +++ b/tests/Unit/Libraries/Cms/Html/JHtmlTelTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage HTML * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Layout/BaseLayoutTest.php b/tests/Unit/Libraries/Cms/Layout/BaseLayoutTest.php index f6580a1487750..0817ae191d977 100644 --- a/tests/Unit/Libraries/Cms/Layout/BaseLayoutTest.php +++ b/tests/Unit/Libraries/Cms/Layout/BaseLayoutTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Layout * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Mail/MailHelperTest.php b/tests/Unit/Libraries/Cms/Mail/MailHelperTest.php index c43cd0489cd03..bf76cc816c03c 100644 --- a/tests/Unit/Libraries/Cms/Mail/MailHelperTest.php +++ b/tests/Unit/Libraries/Cms/Mail/MailHelperTest.php @@ -2,7 +2,7 @@ /** * @package Joomla.UnitTest * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Mail/MailTest.php b/tests/Unit/Libraries/Cms/Mail/MailTest.php index 4c7f65c5f3e9d..819df65e05436 100644 --- a/tests/Unit/Libraries/Cms/Mail/MailTest.php +++ b/tests/Unit/Libraries/Cms/Mail/MailTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Mail * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Microdata/MicrodataTest.php b/tests/Unit/Libraries/Cms/Microdata/MicrodataTest.php index 5b1f11554003d..55bc46e28b6d6 100644 --- a/tests/Unit/Libraries/Cms/Microdata/MicrodataTest.php +++ b/tests/Unit/Libraries/Cms/Microdata/MicrodataTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Microdata * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Object/CMSObjectTest.php b/tests/Unit/Libraries/Cms/Object/CMSObjectTest.php index 3d6b3476c08fd..d01f38c3f666d 100644 --- a/tests/Unit/Libraries/Cms/Object/CMSObjectTest.php +++ b/tests/Unit/Libraries/Cms/Object/CMSObjectTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Base * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Toolbar/Button/CustomButtonTest.php b/tests/Unit/Libraries/Cms/Toolbar/Button/CustomButtonTest.php index 4ff607ff2af7b..1152ac7b16e42 100644 --- a/tests/Unit/Libraries/Cms/Toolbar/Button/CustomButtonTest.php +++ b/tests/Unit/Libraries/Cms/Toolbar/Button/CustomButtonTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Toolbar * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/Toolbar/ToolbarTest.php b/tests/Unit/Libraries/Cms/Toolbar/ToolbarTest.php index 251df8942386e..d9950ca822996 100644 --- a/tests/Unit/Libraries/Cms/Toolbar/ToolbarTest.php +++ b/tests/Unit/Libraries/Cms/Toolbar/ToolbarTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Toolbar * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/Libraries/Cms/VersionTest.php b/tests/Unit/Libraries/Cms/VersionTest.php index 28495c8ecc85c..a3482e3b28569 100644 --- a/tests/Unit/Libraries/Cms/VersionTest.php +++ b/tests/Unit/Libraries/Cms/VersionTest.php @@ -3,7 +3,7 @@ * @package Joomla.UnitTest * @subpackage Version * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/tests/Unit/bootstrap.php b/tests/Unit/bootstrap.php index 450db1c7ac901..08be0048f9d64 100644 --- a/tests/Unit/bootstrap.php +++ b/tests/Unit/bootstrap.php @@ -4,7 +4,7 @@ * * @package Joomla.UnitTest * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @link http://www.phpunit.de/manual/current/en/installation.html */ diff --git a/tests/javascript/joomla-switcher/joomla-switcher.spec.js b/tests/javascript/joomla-switcher/joomla-switcher.spec.js index e7593a0e36509..32f24f12df7f6 100644 --- a/tests/javascript/joomla-switcher/joomla-switcher.spec.js +++ b/tests/javascript/joomla-switcher/joomla-switcher.spec.js @@ -2,7 +2,7 @@ * @package Joomla.Tests * @subpackage JavaScript Tests * - * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. + * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * * @since 4.0.0