Add mafe-translation
This commit is contained in:
69
workflow/engine/bin/tasks/cliMafe.php
Normal file
69
workflow/engine/bin/tasks/cliMafe.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
/**
|
||||
* cliMafe.php
|
||||
*
|
||||
* ProcessMaker Open Source Edition
|
||||
* Copyright (C) 2011 Colosa Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
|
||||
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
|
||||
*
|
||||
* @package workflow-engine-bin-tasks
|
||||
*/
|
||||
G::LoadClass("system");
|
||||
G::LoadClass("wsTools");
|
||||
|
||||
|
||||
CLI::taskName('mafe-translation');
|
||||
CLI::taskDescription(<<<EOT
|
||||
Creates labels of mafe for the database
|
||||
|
||||
EOT
|
||||
);
|
||||
//CLI::taskArg('lang', true);
|
||||
//CLI::taskArg('workspace', true);
|
||||
CLI::taskArg('workspace', true, true);
|
||||
CLI::taskOpt("lang", "You must specify language on which rebuild of the case cache list builder will be done; if you don't specify this, it will use 'en' by default", "l:","lang=");
|
||||
CLI::taskRun('run_create_translation');
|
||||
|
||||
function run_create_translation($args, $opts)
|
||||
{
|
||||
$rootDir = realpath(__DIR__."/../../../../");
|
||||
$app = new Maveriks\WebApplication();
|
||||
$app->setRootDir($rootDir);
|
||||
$loadConstants = false;
|
||||
|
||||
$workspaces = get_workspaces_from_args($args);
|
||||
print_r($workspaces);
|
||||
$lang = array_key_exists("lang", $opts) ? $opts['lang'] : 'en';
|
||||
|
||||
//$app->loadEnvironment("marcoantonio3", $loadConstants);
|
||||
|
||||
$translation = new Translation();
|
||||
CLI::logging("Updating labels Mafe ...\n");
|
||||
foreach ($workspaces as $workspace) {
|
||||
try {
|
||||
echo "Updating labels for workspace " . pakeColor::colorize($workspace->name, "INFO") . "\n";
|
||||
$app->loadEnvironment($workspace->name, $loadConstants);
|
||||
$translation->generateTransaltionMafe($lang);
|
||||
} catch (Exception $e) {
|
||||
echo "Errors upgrading labels for workspace " . CLI::info($workspace->name) . ": " . CLI::error($e->getMessage()) . "\n";
|
||||
}
|
||||
}
|
||||
|
||||
CLI::logging("Create successful\n");
|
||||
|
||||
}
|
||||
@@ -258,6 +258,9 @@ function run_database_check($args, $opts) {
|
||||
}
|
||||
|
||||
function database_upgrade($command, $args) {
|
||||
print_r($command);
|
||||
print_r($args);
|
||||
die;
|
||||
$workspaces = get_workspaces_from_args($args);
|
||||
$checkOnly = (strcmp($command, "check") == 0);
|
||||
foreach ($workspaces as $workspace) {
|
||||
|
||||
@@ -573,5 +573,19 @@ class Translation extends BaseTranslation
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public function generateTransaltionMafe ($lang='en')
|
||||
{
|
||||
if (!file_exists(PATH_TRUNK .'vendor/colosa/MichelangeloFE/' . 'labels.php')) {
|
||||
throw new Exception( PATH_TRUNK .'vendor/colosa/MichelangeloFE/' . 'labels.php');
|
||||
throw new Exception( 'labels.php not exist in MAFE ');
|
||||
}
|
||||
|
||||
include PATH_TRUNK .'vendor/colosa/MichelangeloFE/' . 'labels.php';
|
||||
|
||||
foreach ($labels as $key => $row) {
|
||||
$this->addTranslation ('LABEL', 'ID_MAFE_'.MD5($row), $lang, $row);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -112,10 +112,10 @@
|
||||
<a href="#" class="mafe-menu-databaseconnections"></a>
|
||||
<a href="#" class="btn_create mafe-menu-databaseconnections-create"><span></span></a>
|
||||
</li>
|
||||
<li>
|
||||
<!--<li>
|
||||
<a href="#" class="mefe-menu-casescheduler"></a>
|
||||
<a href="#" class="btn_create mafe-menu-casescheduler-create"><span></span></a>
|
||||
</li>
|
||||
</li>-->
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user