67 lines
1.9 KiB
PHP
67 lines
1.9 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());
|
|
|
|
// Stockage Client => SD
|
|
$pathClientSend = '/home/data/clients/fransbonhomme/send';
|
|
|
|
// Stockage SD => Client
|
|
$pathClientRecv = '/home/data/clients/fransbonhomme/recv';
|
|
|
|
//Options
|
|
try {
|
|
$opts = new Zend_Console_Getopt(array(
|
|
'help|?' => "Displays usage information.",
|
|
'siren=s' => "SIREN",
|
|
));
|
|
$opts->parse();
|
|
} catch (Zend_Console_Getopt_Exception $e) {
|
|
echo $e->getUsageMessage();
|
|
exit;
|
|
}
|
|
|
|
//Usage
|
|
if( isset($opts->help) || count($opts->getOptions())==0 )
|
|
{
|
|
echo "\n"."Debuggage 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/partenaires/classMLiens2.php';
|
|
require_once 'Metier/partenaires/classMBanques.php';
|
|
require_once 'Metier/insee/classMInsee.php';
|
|
require_once 'Metier/scores/classMScores.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";
|
|
|
|
|