Skip to content

Commit

Permalink
Zend libraries issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rbbrioso28 committed Jan 9, 2023
1 parent 55d151c commit e37dbe4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/plugins/MelisFrontGdprRevalidationPlugin.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
'name' => 'NotEmpty',
'options' => [
'messages' => [
\Zend\Validator\NotEmpty::IS_EMPTY => 'tr_front_template_path_empty',
\Laminas\Validator\NotEmpty::IS_EMPTY => 'tr_front_template_path_empty',
],
],
],
Expand Down
2 changes: 1 addition & 1 deletion language/en_EN.interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'tr_MelisFrontShowListFromFolderPlugin_Name' => 'Folder listing',
'tr_MelisFrontShowListFromFolderPlugin_Description' => 'The folder listing plugin provides a list of subpages from the treeview, that allows to create lists of elements suchs as news or page details of an item.',
'tr_MelisFrontSearchResultsPlugin_Name' => 'Search results',
'tr_MelisFrontSearchResultsPlugin_Description' => 'The search results plugin provides the results from Melis Platform based on Zend Search and displays them on the page.',
'tr_MelisFrontSearchResultsPlugin_Description' => 'The search results plugin provides the results from Melis Platform based on Laminas Search and displays them on the page.',
'tr_melis_plugins_page_id_empty' => 'Please enter the page ID',
'tr_melis_plugins_page_id_not_num' => 'Invalid page ID, it must be numeric',

Expand Down
8 changes: 4 additions & 4 deletions src/Listener/MelisFrontDeletePluginCacheListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

namespace MelisFront\Listener;

use Zend\EventManager\EventManagerInterface;
use Zend\EventManager\ListenerAggregateInterface;
use Zend\Mvc\MvcEvent;
use Zend\Session\Container;
use Laminas\EventManager\EventManagerInterface;
use Laminas\EventManager\ListenerAggregateInterface;
use Laminas\Mvc\MvcEvent;
use Laminas\Session\Container;
use MelisCore\Listener\MelisGeneralListener;

/**
Expand Down

0 comments on commit e37dbe4

Please sign in to comment.