Added search by translated string to the translation area.

This commit is contained in:
2021-10-18 22:12:19 +02:00
parent 5651d3dca8
commit ab471e3ccb
18 changed files with 313 additions and 35 deletions

View File

@ -423,9 +423,10 @@ class ComponentbuilderControllerAjax extends JControllerLegacy
{
$idValue = $jinput->get('id', NULL, 'INT');
$typeValue = $jinput->get('type', NULL, 'WORD');
$keyValue = $jinput->get('key', 1, 'INT');
if($idValue && $user->id != 0 && $typeValue)
{
$result = $this->getModel('ajax')->getClassCodeIds($idValue, $typeValue);
$result = $this->getModel('ajax')->getClassCodeIds($idValue, $typeValue, $keyValue);
}
else
{