63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* commands.php
|
|
*
|
|
* ProcessMaker Open Source Edition
|
|
* Copyright (C) 2010 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.
|
|
*
|
|
*/
|
|
|
|
/* Windows supports both / and \ as path separators, so use the Unix separator
|
|
* for maximum compatibility.
|
|
*/
|
|
define('PATH_SEP', '/');
|
|
|
|
define('PATH_HOME', WORKFLOW_PATH );
|
|
define('PATH_TRUNK', PROCESSMAKER_PATH );
|
|
define('PATH_OUTTRUNK', realpath(PROCESSMAKER_PATH.'/..') );
|
|
|
|
/* Most definitions (including the G class) is done in paths.php
|
|
* This mostly simulates a sysGeneric.php call.
|
|
*/
|
|
if (file_exists(PATH_HOME . 'engine/config/paths_installed.php'))
|
|
require_once(PATH_HOME . 'engine/config/paths_installed.php');
|
|
require_once ( PATH_HOME . 'engine/config/paths.php' );
|
|
|
|
require_once( PATH_THIRDPARTY . 'pake/pakeFunction.php');
|
|
require_once( PATH_THIRDPARTY . 'pake/pakeGetopt.class.php');
|
|
require_once( PATH_CORE . 'config/environments.php');
|
|
|
|
/* Hide notice, otherwise we get a lot of messages */
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
|
|
// register tasks
|
|
$dir = PATH_HOME . 'engine/bin/tasks';
|
|
$tasks = pakeFinder::type('file')->name( 'cli*.php' )->in($dir);
|
|
|
|
foreach ($tasks as $task) {
|
|
include_once($task);
|
|
}
|
|
|
|
// run task
|
|
pakeApp::get_instance()->run(null, null, false);
|
|
|
|
exit(0);
|
|
|
|
?>
|