batch/build/debugScore.php
Michael RICOIS 627c5f1f56 PHP-CS-Fixer
2016-11-29 16:59:35 +01:00

61 lines
1.7 KiB
PHP

<?php
// --- Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(__DIR__ . '/../application'));
// --- Define application environment
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
// --- Composer autoload
require_once realpath(__DIR__ . '/../vendor/autoload.php');
// --- Create application, bootstrap, and run
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$c = new Zend_Config($application->getOptions());
// --- Options
$displayUsage = false;
try {
$opts = new Zend_Console_Getopt(array(
'help|?' => "Displays usage information.",
'siren=s' => "SIREN",
));
$opts->parse();
} catch (Zend_Console_Getopt_Exception $e) {
$displayUsage = true;
}
// --- Aide / Options
if (count($opts->getOptions())==0 || isset($opts->help)) {
$displayUsage = true;
}
// --- Usage
if ($displayUsage) {
echo "\nDebuggage Scoring.\n\n";
echo $opts->getUsageMessage();
exit;
}
$db = Zend_Db::factory($c->profil->db->metier);
Zend_Db_Table::setDefaultAdapter($db);
require_once APPLICATION_PATH.'/configs/config.php';
require_once 'framework/fwk.php';
require_once 'framework/common/chiffres.php';
require_once 'framework/common/dates.php';
require_once 'framework/mail/sendMail.php';
require_once 'Metier/Scores/MScores.php';
$tabIndiscore = calculIndiScore($opts->siren, 0, false, 2, false);
echo "NOTE/100 = ".$tabIndiscore['Indiscore'];
echo "\n";
echo "NOTE/20 = ".$tabIndiscore['Indiscore20'];
echo "\n";
echo "ENCOURS = ".$tabIndiscore['encours'];
echo "\n";