Skip to content

Commit

Permalink
Add reloading of lexicon entries for any namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan-Aleev committed Feb 12, 2024
1 parent 868f947 commit b77a7b3
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 47 deletions.
7 changes: 4 additions & 3 deletions core/lexicon/en/lexicon.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
$_lang['lexicon_import_err_upload'] = 'An error occurred while trying to upload the Lexicon Topic file. Check your web server permissions in trying to upload to the tmp directory, and validate that the file you are trying to upload is a valid file.';
$_lang['lexicon_management'] = 'Lexicon Management';
$_lang['lexicon_management_desc'] = 'Here you can override any Lexicon Entries across Namespaces and their respective Topics. Just double-click on any Entry\'s value to override it. To add new Lexicon Entries or Topics, just create their Topic files in their Namespace\'s respective directory.<br /><b>Each Entry will be available via the [[%name]] placeholder.</b>';
$_lang['lexicon_rlfb_msg'] = 'Successfully regenerated [[+num]] strings.';
$_lang['reload_from_base'] = 'Revert All Core Entries';
$_lang['reload_success'] = 'Successfully reloaded [[+total]] strings.';
$_lang['lexicon_revert'] = 'Revert Entries';
$_lang['lexicon_revert_confirm'] = 'Are you sure you want to revert the "[[+namespace]]" namespace > "[[+topic]]" topic > "[[+language]]" lexicon to its default strings?';
$_lang['lexicon_revert_success'] = 'Reverted [[+total]] total string(s): [[+names]]';
$_lang['lexicon_revert_error'] = 'No lexicon entries found to revert.';
$_lang['topic'] = 'Topic';
45 changes: 29 additions & 16 deletions core/src/Revolution/Processors/Workspace/Lexicon/ReloadFromBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

use MODX\Revolution\modLexiconEntry;
use MODX\Revolution\Processors\Processor;
use MODX\Revolution\modNamespace;
use MODX\Revolution\modX;

/**
Expand Down Expand Up @@ -41,42 +42,54 @@ public function getLanguageTopics()
*/
public function process()
{
$language = 'en';
$namespace = 'core';
$corePath = $this->modx->getOption('core_path', null, MODX_CORE_PATH);
$namespace = $this->getProperty('namespace');
$topic = $this->getProperty('lexiconTopic');
$language = $this->getProperty('language');

$namespaceObj = $this->modx->getObject(modNamespace::class, $namespace);

if (empty($namespace) || empty($topic) || empty($language) || empty($namespaceObj)) {
$this->modx->log(modX::LOG_LEVEL_WARN, $this->modx->lexicon('lexicon_revert_error'));
$this->modx->log(modX::LOG_LEVEL_INFO, 'COMPLETED');

return $this->success();
}

$namespacePath = $namespaceObj->getCorePath();

$this->modx->lexicon->clearCache();
$c = $this->modx->newQuery(modLexiconEntry::class);
$c->where([
'namespace' => $namespace,
'language' => $language,
'topic' => $topic,
]);
$entries = $this->modx->getCollection(modLexiconEntry::class, $c);

$currentTopic = '';
$i = 0;
$names = [];
/** @var modLexiconEntry $entry */
foreach ($entries as $entry) {
if ($currentTopic !== $entry->get('topic')) {
$currentTopic = $entry->get('topic');

$topicPath = str_replace('//', '/',
$corePath . '/lexicon/' . $language . '/' . $currentTopic . '.inc.php');
$lex = [];
$_lang = [];
if (file_exists($topicPath)) {
include $topicPath;
$lex = $_lang;
}
$topicPath = str_replace('//', '/', $namespacePath . '/lexicon/' . $language . '/' . $topic . '.inc.php');
$lex = [];
$_lang = [];
if (file_exists($topicPath)) {
include $topicPath;
$lex = $_lang;
}

if (!empty($lex[$entry->get('name')])) {
$i++;
$names[] = $entry->get('name');
$entry->remove();
}
}

$this->modx->log(modX::LOG_LEVEL_WARN, $this->modx->lexicon('reload_success', ['total' => $i]));
if ($i) {
$this->modx->log(modX::LOG_LEVEL_WARN, $this->modx->lexicon('lexicon_revert_success', ['total' => $i, 'names' => implode(', ', $names)]));
} else {
$this->modx->log(modX::LOG_LEVEL_WARN, $this->modx->lexicon('lexicon_revert_error'));
}
$this->modx->log(modX::LOG_LEVEL_INFO, 'COMPLETED');

return $this->success($i);
Expand Down
70 changes: 42 additions & 28 deletions manager/assets/modext/workspace/lexicon/lexicon.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ MODx.grid.Lexicon = function(config = {}) {
,handler: this.createEntry
,scope: this
},{
text: _('reload_from_base')
text: _('lexicon_revert')
,handler: this.reloadFromBase
,scope: this
},
Expand Down Expand Up @@ -245,41 +245,55 @@ Ext.extend(MODx.grid.Lexicon,MODx.grid.Grid,{
}

,loadWindow2: function(btn,e,o) {
var tb = this.getTopToolbar();
this.menu.record = {
'namespace': tb.getComponent('namespace').getValue()
,language: tb.getComponent('language').getValue()
this.menu.record = {
namespace: this.getFilterComponent('filter-namespace').getValue(),
language: this.getFilterComponent('filter-language').getValue()
};
if (o.xtype != 'modx-window-lexicon-import') {
this.menu.record.topic = tb.getComponent('topic').getValue();
this.menu.record.topic = this.getFilterComponent('filter-topic').getValue();
}
this.loadWindow(btn, e, o);
this.loadWindow(btn, e, o);
}
,reloadFromBase: function() {
Ext.Ajax.timeout = 0;
var topic = '/workspace/lexicon/reload/';
this.console = MODx.load({
xtype: 'modx-console'
,register: 'mgr'
,topic: topic
});
namespace = this.getFilterComponent('filter-namespace').getValue(),
topic = this.getFilterComponent('filter-topic').getValue(),
language = this.getFilterComponent('filter-language').getValue(),
registryTopic = '/workspace/lexicon/reload/';

this.console.on('complete',function(){
this.refresh();
},this);
this.console.show(Ext.getBody());
MODx.msg.confirm({
text: _('lexicon_revert_confirm', {
namespace: namespace
,topic: topic
,language: language
})
,url: this.config.url
,params: {
action: 'Workspace/Lexicon/ReloadFromBase'
,register: 'mgr'
,topic: registryTopic
,namespace: namespace
,lexiconTopic: topic
,language: language
}
,listeners: {
'success': {
fn:function() {
this.console = MODx.load({
xtype: 'modx-console'
,register: 'mgr'
,topic: registryTopic
});

MODx.Ajax.request({
url: this.config.url
,params: {action: 'Workspace/Lexicon/ReloadFromBase' ,register: 'mgr' ,topic: topic}
,listeners: {
'success': {fn:function(r) {
this.refresh();
},scope:this}
}
});
this.console.on('complete',function(){
this.refresh();
},this);
this.console.show(Ext.getBody());
}
,scope:this
}
}
});
}

,revertEntry: function() {
var p = this.menu.record;
p.action = 'Workspace/Lexicon/Revert';
Expand Down

0 comments on commit b77a7b3

Please sign in to comment.