Following the update of Zend Framework to version 1.12.5

This commit is contained in:
Michael RICOIS 2014-03-14 13:07:14 +00:00
parent ba4d074e53
commit 8d5c18c364
7 changed files with 252 additions and 130 deletions

View File

@ -1,2 +1,37 @@
<?php
return array();
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Bootstrap' => dirname(__FILE__) . '/Bootstrap.php',
'AideController' => dirname(__FILE__) . '/controllers/AideController.php',
'BdfController' => dirname(__FILE__) . '/controllers/BdfController.php',
'DashboardController' => dirname(__FILE__) . '/controllers/DashboardController.php',
'DirigeantController' => dirname(__FILE__) . '/controllers/DirigeantController.php',
'ErrorController' => dirname(__FILE__) . '/controllers/ErrorController.php',
'EvaluationController' => dirname(__FILE__) . '/controllers/EvaluationController.php',
'FichierController' => dirname(__FILE__) . '/controllers/FichierController.php',
'FinanceController' => dirname(__FILE__) . '/controllers/FinanceController.php',
'GiantController' => dirname(__FILE__) . '/controllers/GiantController.php',
'IdentiteController' => dirname(__FILE__) . '/controllers/IdentiteController.php',
'IndexController' => dirname(__FILE__) . '/controllers/IndexController.php',
'JuridiqueController' => dirname(__FILE__) . '/controllers/JuridiqueController.php',
'LogoController' => dirname(__FILE__) . '/controllers/LogoController.php',
'MandataireController' => dirname(__FILE__) . '/controllers/MandataireController.php',
'PiecesController' => dirname(__FILE__) . '/controllers/PiecesController.php',
'PrintController' => dirname(__FILE__) . '/controllers/PrintController.php',
'RechercheController' => dirname(__FILE__) . '/controllers/RechercheController.php',
'SaisieController' => dirname(__FILE__) . '/controllers/SaisieController.php',
'SurveillanceController' => dirname(__FILE__) . '/controllers/SurveillanceController.php',
'TelechargementController' => dirname(__FILE__) . '/controllers/TelechargementController.php',
'UserController' => dirname(__FILE__) . '/controllers/UserController.php',
'WorldcheckController' => dirname(__FILE__) . '/controllers/WorldcheckController.php',
'Zend_View_Helper_CssHelper' => dirname(__FILE__) . '/views/default/helpers/CssHelper.php',
'Zend_View_Helper_Editable' => dirname(__FILE__) . '/views/default/helpers/Editable.php',
'Zend_View_Helper_FormatPct' => dirname(__FILE__) . '/views/default/helpers/FormatPct.php',
'Zend_View_Helper_JavascriptHelper' => dirname(__FILE__) . '/views/default/helpers/JavascriptHelper.php',
'Zend_View_Helper_MenuScript' => dirname(__FILE__) . '/views/default/helpers/MenuScript.php',
'Zend_View_Helper_NewsDate' => dirname(__FILE__) . '/views/mobile/helpers/NewsDate.php',
'Zend_View_Helper_RemplaceSiren' => dirname(__FILE__) . '/views/default/helpers/RemplaceSiren.php',
'Zend_View_Helper_SirenTexte' => dirname(__FILE__) . '/views/default/helpers/SirenTexte.php',
'Zend_View_Helper_SiretTexte' => dirname(__FILE__) . '/views/default/helpers/SiretTexte.php',
'Zend_View_Helper_TrueLabel' => dirname(__FILE__) . '/views/default/helpers/TrueLabel.php',
);

View File

@ -15,7 +15,7 @@
* @category Zend
* @package Zend_Loader
* @subpackage Exception
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
@ -28,8 +28,10 @@
* current directory
* --output|-o [ <string> ] Where to write autoload file; if not provided,
* assumes "autoload_classmap.php" in library directory
* --append|-a Append to autoload file if it exists
* --overwrite|-w Whether or not to overwrite existing autoload
* file
* --ignore|-i [ <string> ] Comma-separated namespaces to ignore
*/
$libPath = dirname(__FILE__) . '/../library';
@ -49,12 +51,14 @@ if (!is_dir($libPath)) {
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath($libPath),
get_include_path(),
realpath($libPath),
get_include_path(),
)));
$libraryPath = getcwd();
// Setup autoloading
$loader = new Zend_Loader_StandardAutoloader();
$loader = new Zend_Loader_StandardAutoloader(array('autoregister_zf' => true));
$loader->setFallbackAutoloader(true);
$loader->register();
@ -62,7 +66,9 @@ $rules = array(
'help|h' => 'Get usage message',
'library|l-s' => 'Library to parse; if none provided, assumes current directory',
'output|o-s' => 'Where to write autoload file; if not provided, assumes "autoload_classmap.php" in library directory',
'append|a' => 'Append to autoload file if it exists',
'overwrite|w' => 'Whether or not to overwrite existing autoload file',
'ignore|i-s' => 'Comma-separated namespaces to ignore',
);
try {
@ -75,83 +81,164 @@ try {
if ($opts->getOption('h')) {
echo $opts->getUsageMessage();
exit();
exit(0);
}
$path = $libPath;
if (array_key_exists('PWD', $_SERVER)) {
$path = $_SERVER['PWD'];
$ignoreNamespaces = array();
if (isset($opts->i)) {
$ignoreNamespaces = explode(',', $opts->i);
}
$relativePathForClassmap = '';
if (isset($opts->l)) {
$path = $opts->l;
if (!is_dir($path)) {
echo "Invalid library directory provided" . PHP_EOL . PHP_EOL;
if (!is_dir($opts->l)) {
echo 'Invalid library directory provided' . PHP_EOL
. PHP_EOL;
echo $opts->getUsageMessage();
exit(2);
}
$path = realpath($path);
$libraryPath = $opts->l;
}
$libraryPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath($libraryPath));
$usingStdout = false;
$output = $path . DIRECTORY_SEPARATOR . 'autoload_classmap.php';
$appending = $opts->getOption('a');
$output = $libraryPath . '/autoload_classmap.php';
if (isset($opts->o)) {
$output = $opts->o;
if ('-' == $output) {
$output = STDOUT;
$usingStdout = true;
} elseif (is_dir($output)) {
echo 'Invalid output file provided' . PHP_EOL
. PHP_EOL;
echo $opts->getUsageMessage();
exit(2);
} elseif (!is_writeable(dirname($output))) {
echo "Cannot write to '$output'; aborting." . PHP_EOL
. PHP_EOL
. $opts->getUsageMessage();
exit(2);
} elseif (file_exists($output)) {
if (!$opts->getOption('w')) {
echo "Autoload file already exists at '$output'," . PHP_EOL
. "but 'overwrite' flag was not specified; aborting." . PHP_EOL
. PHP_EOL
. $opts->getUsageMessage();
exit(2);
} elseif (file_exists($output) && !$opts->getOption('w') && !$appending) {
echo "Autoload file already exists at '$output'," . PHP_EOL
. "but 'overwrite' or 'appending' flag was not specified; aborting." . PHP_EOL
. PHP_EOL
. $opts->getUsageMessage();
exit(2);
} else {
// We need to add the $libraryPath into the relative path that is created in the classmap file.
$classmapPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath(dirname($output)));
// Simple case: $libraryPathCompare is in $classmapPathCompare
if (strpos($libraryPath, $classmapPath) === 0) {
$relativePathForClassmap = substr($libraryPath, strlen($classmapPath) + 1) . '/';
} else {
$libraryPathParts = explode('/', $libraryPath);
$classmapPathParts = explode('/', $classmapPath);
// Find the common part
$count = count($classmapPathParts);
for ($i = 0; $i < $count; $i++) {
if (!isset($libraryPathParts[$i]) || $libraryPathParts[$i] != $classmapPathParts[$i]) {
// Common part end
break;
}
}
// Add parent dirs for the subdirs of classmap
$relativePathForClassmap = str_repeat('../', $count - $i);
// Add library subdirs
$count = count($libraryPathParts);
for (; $i < $count; $i++) {
$relativePathForClassmap .= $libraryPathParts[$i] . '/';
}
}
}
}
$strip = $path;
if (!$usingStdout) {
echo "Creating class file map for library in '$path'..." . PHP_EOL;
if ($appending) {
echo "Appending to class file map '$output' for library in '$libraryPath'..." . PHP_EOL;
} else {
echo "Creating class file map for library in '$libraryPath'..." . PHP_EOL;
}
}
// Get the ClassFileLocator, and pass it the library path
$l = new Zend_File_ClassFileLocator($path);
$l = new Zend_File_ClassFileLocator($libraryPath);
// Iterate over each element in the path, and create a map of
// classname => filename, where the filename is relative to the library path
$map = new stdClass;
$strip .= DIRECTORY_SEPARATOR;
function createMap(Iterator $i, $map, $strip) {
$file = $i->current();
$namespace = empty($file->namespace) ? '' : $file->namespace . '\\';
$filename = str_replace($strip, '', $file->getRealpath());
$map = new stdClass;
foreach ($l as $file) {
$filename = str_replace($libraryPath . '/', '', str_replace(DIRECTORY_SEPARATOR, '/', $file->getPath()) . '/' . $file->getFilename());
// Windows portability
$filename = str_replace(array('/', '\\'), "' . DIRECTORY_SEPARATOR . '", $filename);
// Add in relative path to library
$filename = $relativePathForClassmap . $filename;
$map->{$namespace . $file->classname} = $filename;
foreach ($file->getClasses() as $class) {
foreach ($ignoreNamespaces as $ignoreNs) {
if ($ignoreNs == substr($class, 0, strlen($ignoreNs))) {
continue 2;
}
}
return true;
$map->{$class} = $filename;
}
}
iterator_apply($l, 'createMap', array($l, $map, $strip));
// Create a file with the class/file map.
// Stupid syntax highlighters make separating < from PHP declaration necessary
$dirStore = 'dirname_' . uniqid();
$content = '<' . "?php\n"
. '$' . $dirStore . " = dirname(__FILE__);\n"
. 'return ' . var_export((array) $map, true) . ';';
if ($appending) {
$content = var_export((array) $map, true) . ';';
// Prefix with dirname(__FILE__); modify the generated content
$content = preg_replace('#(=> )#', '$1$' . $dirStore . ' . DIRECTORY_SEPARATOR . ', $content);
$content = str_replace("\\'", "'", $content);
// Prefix with dirname(__FILE__); modify the generated content
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '", $content);
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
$content = str_replace("\\'", "'", $content);
// Convert to an array and remove the first "array("
$content = explode("\n", $content);
array_shift($content);
// Load existing class map file and remove the closing "bracket ");" from it
$existing = file($output, FILE_IGNORE_NEW_LINES);
array_pop($existing);
// Merge
$content = implode("\n", array_merge($existing, $content));
} else {
// Create a file with the class/file map.
// Stupid syntax highlighters make separating < from PHP declaration necessary
$content = '<' . "?php\n"
. "// Generated by ZF's ./bin/classmap_generator.php\n"
. 'return ' . var_export((array) $map, true) . ';';
// Prefix with dirname(__FILE__); modify the generated content
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '", $content);
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
$content = str_replace("\\'", "'", $content);
}
// Remove unnecessary double-backslashes
$content = str_replace('\\\\', '\\', $content);
// Exchange "array (" width "array("
$content = str_replace('array (', 'array(', $content);
// Align "=>" operators to match coding standard
preg_match_all('(\n\s+([^=]+)=>)', $content, $matches, PREG_SET_ORDER);
$maxWidth = 0;
foreach ($matches as $match) {
$maxWidth = max($maxWidth, strlen($match[1]));
}
$content = preg_replace('(\n\s+([^=]+)=>)e', "'\n \\1' . str_repeat(' ', " . $maxWidth . " - strlen('\\1')) . '=>'", $content);
// Make the file end by EOL
$content = rtrim($content, "\n") . "\n";
// Write the contents to disk
file_put_contents($output, $content);

View File

@ -12,7 +12,7 @@ REM obtain it through the world-wide-web, please send an email
REM to license@zend.com so we can send you a copy immediately.
REM
REM Zend
REM Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
REM Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
REM http://framework.zend.com/license/new-bsd New BSD License

View File

@ -15,7 +15,7 @@
* @category Zend
* @package Zend_Tool
* @subpackage Framework
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id$
*/
@ -26,7 +26,7 @@
* @category Zend
* @package Zend_Tool
* @subpackage Framework
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class ZF

View File

@ -14,7 +14,7 @@
# to license@zend.com so we can send you a copy immediately.
#
# Zend
# Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
# Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
# http://framework.zend.com/license/new-bsd New BSD License
#############################################################################

View File

@ -1,38 +1,38 @@
<?php
$dirname_531986e1115c5 = dirname(__FILE__);
return array (
'Application_Controller_Plugin_Auth' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Auth.php',
'Application_Controller_Plugin_Cgu' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Cgu.php',
'Application_Controller_Plugin_Lang' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Lang.php',
'Application_Controller_Plugin_Menu' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Menu.php',
'Application_Controller_Plugin_Pdf' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Pdf.php',
'Application_Controller_Plugin_Theme' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Theme.php',
'Application_Controller_Plugin_Xml' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Xml.php',
'Application_Form_Login' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'Login.php',
'Application_Form_RechercheActionnaire' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'RechercheActionnaire.php',
'Application_Form_RechercheDirigeant' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'RechercheDirigeant.php',
'Application_Form_RechercheEnquete' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'RechercheEnquete.php',
'Application_Form_RechercheEntreprise' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'RechercheEntreprise.php',
'Application_Form_RechercheWorldcheck' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'RechercheWorldcheck.php',
'Application_Model_ActesFiles' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'ActesFiles.php',
'Application_Model_Aide' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Aide.php',
'Application_Model_BilanSaisie' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'BilanSaisie.php',
'Application_Model_City' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'City.php',
'Application_Model_ClientStat' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'ClientStat.php',
'Application_Model_Commandes' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Commandes.php',
'Application_Model_CommandesErreur' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesErreur.php',
'Application_Model_CommandesGiants' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesGiants.php',
'Application_Model_CommandesKbis' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesKbis.php',
'Application_Model_CommandesPieces' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesPieces.php',
'Application_Model_CommandesStatut' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesStatut.php',
'Application_Model_CommandesTarifs' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesTarifs.php',
'Application_Model_FctDir' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'FctDir.php',
'Application_Model_MonitoringGiants' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'MonitoringGiants.php',
'Application_Model_Naf5' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Naf5.php',
'Application_Model_Nouveautes' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Nouveautes.php',
'Application_Model_RapportsGiants' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'RapportsGiants.php',
'Application_Model_RetriveGiants' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'RetriveGiants.php',
'Application_Model_TabEvenements' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'TabEvenements.php',
'Application_Model_TabFJur' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'TabFJur.php',
'Application_Model_Worldcheck' => $dirname_531986e1115c5 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Worldcheck.php',
);
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Application_Controller_Plugin_Auth' => dirname(__FILE__) . '/Controller/Plugin/Auth.php',
'Application_Controller_Plugin_Cgu' => dirname(__FILE__) . '/Controller/Plugin/Cgu.php',
'Application_Controller_Plugin_Lang' => dirname(__FILE__) . '/Controller/Plugin/Lang.php',
'Application_Controller_Plugin_Menu' => dirname(__FILE__) . '/Controller/Plugin/Menu.php',
'Application_Controller_Plugin_Pdf' => dirname(__FILE__) . '/Controller/Plugin/Pdf.php',
'Application_Controller_Plugin_Theme' => dirname(__FILE__) . '/Controller/Plugin/Theme.php',
'Application_Controller_Plugin_Xml' => dirname(__FILE__) . '/Controller/Plugin/Xml.php',
'Application_Form_Login' => dirname(__FILE__) . '/Form/Login.php',
'Application_Form_RechercheActionnaire' => dirname(__FILE__) . '/Form/RechercheActionnaire.php',
'Application_Form_RechercheDirigeant' => dirname(__FILE__) . '/Form/RechercheDirigeant.php',
'Application_Form_RechercheEnquete' => dirname(__FILE__) . '/Form/RechercheEnquete.php',
'Application_Form_RechercheEntreprise' => dirname(__FILE__) . '/Form/RechercheEntreprise.php',
'Application_Form_RechercheWorldcheck' => dirname(__FILE__) . '/Form/RechercheWorldcheck.php',
'Application_Model_ActesFiles' => dirname(__FILE__) . '/Model/ActesFiles.php',
'Application_Model_Aide' => dirname(__FILE__) . '/Model/Aide.php',
'Application_Model_BilanSaisie' => dirname(__FILE__) . '/Model/BilanSaisie.php',
'Application_Model_City' => dirname(__FILE__) . '/Model/City.php',
'Application_Model_ClientStat' => dirname(__FILE__) . '/Model/ClientStat.php',
'Application_Model_Commandes' => dirname(__FILE__) . '/Model/Commandes.php',
'Application_Model_CommandesErreur' => dirname(__FILE__) . '/Model/CommandesErreur.php',
'Application_Model_CommandesGiants' => dirname(__FILE__) . '/Model/CommandesGiants.php',
'Application_Model_CommandesKbis' => dirname(__FILE__) . '/Model/CommandesKbis.php',
'Application_Model_CommandesPieces' => dirname(__FILE__) . '/Model/CommandesPieces.php',
'Application_Model_CommandesStatut' => dirname(__FILE__) . '/Model/CommandesStatut.php',
'Application_Model_CommandesTarifs' => dirname(__FILE__) . '/Model/CommandesTarifs.php',
'Application_Model_FctDir' => dirname(__FILE__) . '/Model/FctDir.php',
'Application_Model_MonitoringGiants' => dirname(__FILE__) . '/Model/MonitoringGiants.php',
'Application_Model_Naf5' => dirname(__FILE__) . '/Model/Naf5.php',
'Application_Model_Nouveautes' => dirname(__FILE__) . '/Model/Nouveautes.php',
'Application_Model_RapportsGiants' => dirname(__FILE__) . '/Model/RapportsGiants.php',
'Application_Model_RetriveGiants' => dirname(__FILE__) . '/Model/RetriveGiants.php',
'Application_Model_TabEvenements' => dirname(__FILE__) . '/Model/TabEvenements.php',
'Application_Model_TabFJur' => dirname(__FILE__) . '/Model/TabFJur.php',
'Application_Model_Worldcheck' => dirname(__FILE__) . '/Model/Worldcheck.php',
);

View File

@ -1,45 +1,45 @@
<?php
$dirname_530d9a41d779e = dirname(__FILE__);
return array (
'Annonces' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Annonces.php',
'Scores_Auth_Adapter_Db' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Auth' . DIRECTORY_SEPARATOR . 'Adapter' . DIRECTORY_SEPARATOR . 'Db.php',
'Scores_Auth_Adapter_Ws' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Auth' . DIRECTORY_SEPARATOR . 'Adapter' . DIRECTORY_SEPARATOR . 'Ws.php',
'BDF' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Bdf.php',
'Cache' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Cache.php',
'Scores_Export_ArrayCsv' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Export' . DIRECTORY_SEPARATOR . 'ArrayCsv.php',
'Scores_Export_Print' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Export' . DIRECTORY_SEPARATOR . 'Print.php',
'Scores_Finance_Liasse_XLS' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Finance' . DIRECTORY_SEPARATOR . 'Liasse' . DIRECTORY_SEPARATOR . 'XLS.php',
'Scores_Finance_Liasse' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Finance' . DIRECTORY_SEPARATOR . 'Liasse.php',
'Scores_Finance_Ratios_Data' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Finance' . DIRECTORY_SEPARATOR . 'Ratios' . DIRECTORY_SEPARATOR . 'Data.php',
'Scores_Finance_Ratios_Graph' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Finance' . DIRECTORY_SEPARATOR . 'Ratios' . DIRECTORY_SEPARATOR . 'Graph.php',
'GestionCommande' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'GestionCommandes.php',
'Scores_Google_Maps' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Google' . DIRECTORY_SEPARATOR . 'Maps.php',
'Scores_Google_Streetview' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Google' . DIRECTORY_SEPARATOR . 'Streetview.php',
'IdentiteEntreprise' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'IdentiteEntreprise.php',
'IdentiteProcol' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'IdentiteProcol.php',
'Scores_Insee_AvisSituation' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Insee' . DIRECTORY_SEPARATOR . 'AvisSituation.php',
'Scores_Insee_Iris' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Insee' . DIRECTORY_SEPARATOR . 'Iris.php',
'Logo' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Logo.php',
'Scores_Mail' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Mail.php',
'Mappy' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Mappy.php',
'Scores_Menu' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Menu.php',
'Scores_Mobile_Detect' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Mobile' . DIRECTORY_SEPARATOR . 'Detect.php',
'RapportComment' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'RapportComment.php',
'Scores_Serializer_Adapter_Xml' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Serializer' . DIRECTORY_SEPARATOR . 'Adapter' . DIRECTORY_SEPARATOR . 'Xml.php',
'Scores_Session_Entreprise' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Session' . DIRECTORY_SEPARATOR . 'Entreprise.php',
'Scores_Session_Recherche' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Session' . DIRECTORY_SEPARATOR . 'Recherche.php',
'Siren' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Siren.php',
'Scores_Utilisateur' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Utilisateur.php',
'Scores_Wkhtml_Pdf' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Wkhtml' . DIRECTORY_SEPARATOR . 'Pdf.php',
'Scores_Ws_Abstract' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Abstract.php',
'Scores_Ws_Catalog' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Catalog.php',
'Scores_Ws_Config' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Config.php',
'Scores_Ws_Entreprise' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Entreprise.php',
'Scores_Ws_Gestion' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Gestion.php',
'Scores_Ws_Interface' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Interface.php',
'Scores_Ws_Interne' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Interne.php',
'Scores_Ws_Pieces' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Pieces.php',
'Scores_Ws_Saisie' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Saisie.php',
'Scores_Ws' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'Ws.php',
'WsScores' => $dirname_530d9a41d779e . DIRECTORY_SEPARATOR . 'WsScores.php',
);
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Annonces' => dirname(__FILE__) . '//Annonces.php',
'Scores_Auth_Adapter_Db' => dirname(__FILE__) . '//Auth/Adapter/Db.php',
'Scores_Auth_Adapter_Ws' => dirname(__FILE__) . '//Auth/Adapter/Ws.php',
'BDF' => dirname(__FILE__) . '//Bdf.php',
'Cache' => dirname(__FILE__) . '//Cache.php',
'Scores_Export_ArrayCsv' => dirname(__FILE__) . '//Export/ArrayCsv.php',
'Scores_Export_Print' => dirname(__FILE__) . '//Export/Print.php',
'Scores_Finance_Liasse_XLS' => dirname(__FILE__) . '//Finance/Liasse/XLS.php',
'Scores_Finance_Liasse' => dirname(__FILE__) . '//Finance/Liasse.php',
'Scores_Finance_Ratios_Data' => dirname(__FILE__) . '//Finance/Ratios/Data.php',
'Scores_Finance_Ratios_Graph' => dirname(__FILE__) . '//Finance/Ratios/Graph.php',
'GestionCommande' => dirname(__FILE__) . '//GestionCommandes.php',
'Scores_Google_Maps' => dirname(__FILE__) . '//Google/Maps.php',
'Scores_Google_Streetview' => dirname(__FILE__) . '//Google/Streetview.php',
'IdentiteEntreprise' => dirname(__FILE__) . '//IdentiteEntreprise.php',
'IdentiteProcol' => dirname(__FILE__) . '//IdentiteProcol.php',
'Scores_Insee_AvisSituation' => dirname(__FILE__) . '//Insee/AvisSituation.php',
'Scores_Insee_Iris' => dirname(__FILE__) . '//Insee/Iris.php',
'Logo' => dirname(__FILE__) . '//Logo.php',
'Scores_Mail' => dirname(__FILE__) . '//Mail.php',
'Mappy' => dirname(__FILE__) . '//Mappy.php',
'Scores_Menu' => dirname(__FILE__) . '//Menu.php',
'Scores_Mobile_Detect' => dirname(__FILE__) . '//Mobile/Detect.php',
'RapportComment' => dirname(__FILE__) . '//RapportComment.php',
'Scores_Serializer_Adapter_Xml' => dirname(__FILE__) . '//Serializer/Adapter/Xml.php',
'Scores_Session_Entreprise' => dirname(__FILE__) . '//Session/Entreprise.php',
'Scores_Session_Recherche' => dirname(__FILE__) . '//Session/Recherche.php',
'Siren' => dirname(__FILE__) . '//Siren.php',
'Scores_Utilisateur' => dirname(__FILE__) . '//Utilisateur.php',
'Scores_Wkhtml_Pdf' => dirname(__FILE__) . '//Wkhtml/Pdf.php',
'Scores_Ws_Abstract' => dirname(__FILE__) . '//Ws/Abstract.php',
'Scores_Ws_Catalog' => dirname(__FILE__) . '//Ws/Catalog.php',
'Scores_Ws_Config' => dirname(__FILE__) . '//Ws/Config.php',
'Scores_Ws_Entreprise' => dirname(__FILE__) . '//Ws/Entreprise.php',
'Scores_Ws_Gestion' => dirname(__FILE__) . '//Ws/Gestion.php',
'Scores_Ws_Interface' => dirname(__FILE__) . '//Ws/Interface.php',
'Scores_Ws_Interne' => dirname(__FILE__) . '//Ws/Interne.php',
'Scores_Ws_Pieces' => dirname(__FILE__) . '//Ws/Pieces.php',
'Scores_Ws_Saisie' => dirname(__FILE__) . '//Ws/Saisie.php',
'Scores_Ws' => dirname(__FILE__) . '//Ws.php',
'WsScores' => dirname(__FILE__) . '//WsScores.php',
);