Following the update of Zend Framework to version 1.12.5

This commit is contained in:
Michael RICOIS 2014-03-14 14:42:35 +00:00
parent 83cd583744
commit 6cca99dd52
7 changed files with 219 additions and 111 deletions

View File

@ -1,2 +1,23 @@
<?php
return array();
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Bootstrap' => dirname(__FILE__) . '/Bootstrap.php',
'DemoController' => dirname(__FILE__) . '/controllers/DemoController.php',
'DocumentationController' => dirname(__FILE__) . '/controllers/DocumentationController.php',
'ErrorController' => dirname(__FILE__) . '/controllers/ErrorController.php',
'ExportController' => dirname(__FILE__) . '/controllers/ExportController.php',
'FichierController' => dirname(__FILE__) . '/controllers/FichierController.php',
'ImportController' => dirname(__FILE__) . '/controllers/ImportController.php',
'IndexController' => dirname(__FILE__) . '/controllers/IndexController.php',
'JsonrpcController' => dirname(__FILE__) . '/controllers/JsonrpcController.php',
'RefController' => dirname(__FILE__) . '/controllers/RefController.php',
'ServiceController' => dirname(__FILE__) . '/controllers/ServiceController.php',
'UserController' => dirname(__FILE__) . '/controllers/UserController.php',
'Zend_View_Helper_DocComplement' => dirname(__FILE__) . '/views/helpers/DocComplement.php',
'Zend_View_Helper_DocDescription' => dirname(__FILE__) . '/views/helpers/DocDescription.php',
'Zend_View_Helper_DocExemple' => dirname(__FILE__) . '/views/helpers/DocExemple.php',
'Zend_View_Helper_DocMethod' => dirname(__FILE__) . '/views/helpers/DocMethod.php',
'Zend_View_Helper_DocParameter' => dirname(__FILE__) . '/views/helpers/DocParameter.php',
'Zend_View_Helper_DocReturn' => dirname(__FILE__) . '/views/helpers/DocReturn.php',
'Zend_View_Helper_ProfileLink' => dirname(__FILE__) . '/views/helpers/ProfileLink.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,55 +1,55 @@
<?php
$dirname_53184529b1369 = dirname(__FILE__);
return array (
'Application_Controller_Plugin_Auth' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Auth.php',
'Application_Controller_Plugin_Services' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Controller' . DIRECTORY_SEPARATOR . 'Plugin' . DIRECTORY_SEPARATOR . 'Services.php',
'Application_Form_Login' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'Login.php',
'Application_Model_AssoActes' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'AssoActes.php',
'Application_Model_BopiMarques' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'BopiMarques.php',
'Application_Model_Commandes' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Commandes.php',
'Application_Model_CommandesActe' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesActe.php',
'Application_Model_CommandesAsso' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesAsso.php',
'Application_Model_CommandesBilan' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesBilan.php',
'Application_Model_CommandesEven' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesEven.php',
'Application_Model_CommandesKbis' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesKbis.php',
'Application_Model_CommandesPieces' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesPieces.php',
'Application_Model_CommandesStatut' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'CommandesStatut.php',
'Application_Model_ExtractionCommandes' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'ExtractionCommandes.php',
'Application_Model_FedasoBilans' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'FedasoBilans.php',
'Application_Model_HistoriquesBilans' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'HistoriquesBilans.php',
'Application_Model_InseeTabVilles' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'InseeTabVilles.php',
'Application_Model_JoAssoBilans' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoAssoBilans.php',
'Application_Model_JoAssoSubventions' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoAssoSubventions.php',
'Application_Model_JoBilans' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoBilans.php',
'Application_Model_JoBilansUser' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoBilansUser.php',
'Application_Model_JoBoampLots' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoBoampLots.php',
'Application_Model_JoBodaccDetail' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoBodaccDetail.php',
'Application_Model_JoBodaccFonctions' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoBodaccFonctions.php',
'Application_Model_JoGreffesActes' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoGreffesActes.php',
'Application_Model_JoGreffesBilans' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoGreffesBilans.php',
'Application_Model_JoLiens' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoLiens.php',
'Application_Model_JoLiensDoc' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoLiensDoc.php',
'Application_Model_JoLiensRef' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoLiensRef.php',
'Application_Model_JoRncsDirigeants' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoRncsDirigeants.php',
'Application_Model_JoScoresCutoff' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoScoresCutoff.php',
'Application_Model_JoScoresCutoffMvt' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoScoresCutoffMvt.php',
'Application_Model_JoScoresSurveillance' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoScoresSurveillance.php',
'Application_Model_JoSurveillancesSite' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoSurveillancesSite.php',
'Application_Model_JoTabDevises' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTabDevises.php',
'Application_Model_JoTabEvenements' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTabEvenements.php',
'Application_Model_JoTabFJur' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTabFJur.php',
'Application_Model_JoTabNaf5' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTabNaf5.php',
'Application_Model_JoTabPays' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTabPays.php',
'Application_Model_JoTelephonie' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'JoTelephonie.php',
'Application_Model_Sdv1BourseIsin' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1BourseIsin.php',
'Application_Model_Sdv1Clients' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1Clients.php',
'Application_Model_Sdv1ClientsServices' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1ClientsServices.php',
'Application_Model_Sdv1ClientsTarifs' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1ClientsTarifs.php',
'Application_Model_Sdv1GreffeCommandesAc' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1GreffeCommandesAc.php',
'Application_Model_Sdv1GreffeCommandesBi' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1GreffeCommandesBi.php',
'Application_Model_Sdv1GreffeCommandesKb' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1GreffeCommandesKb.php',
'Application_Model_Sdv1Prestations' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1Prestations.php',
'Application_Model_Sdv1TabIdLocal' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1TabIdLocal.php',
'Application_Model_Sdv1Utilisateurs' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1Utilisateurs.php',
'Application_Model_Sdv1UtilisateursService' => $dirname_53184529b1369 . DIRECTORY_SEPARATOR . 'Model' . DIRECTORY_SEPARATOR . 'Sdv1UtilisateursService.php',
);
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Application_Controller_Plugin_Auth' => dirname(__FILE__) . '/Controller/Plugin/Auth.php',
'Application_Controller_Plugin_Services' => dirname(__FILE__) . '/Controller/Plugin/Services.php',
'Application_Form_Login' => dirname(__FILE__) . '/Form/Login.php',
'Application_Model_AssoActes' => dirname(__FILE__) . '/Model/AssoActes.php',
'Application_Model_BopiMarques' => dirname(__FILE__) . '/Model/BopiMarques.php',
'Application_Model_Commandes' => dirname(__FILE__) . '/Model/Commandes.php',
'Application_Model_CommandesActe' => dirname(__FILE__) . '/Model/CommandesActe.php',
'Application_Model_CommandesAsso' => dirname(__FILE__) . '/Model/CommandesAsso.php',
'Application_Model_CommandesBilan' => dirname(__FILE__) . '/Model/CommandesBilan.php',
'Application_Model_CommandesEven' => dirname(__FILE__) . '/Model/CommandesEven.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_ExtractionCommandes' => dirname(__FILE__) . '/Model/ExtractionCommandes.php',
'Application_Model_FedasoBilans' => dirname(__FILE__) . '/Model/FedasoBilans.php',
'Application_Model_HistoriquesBilans' => dirname(__FILE__) . '/Model/HistoriquesBilans.php',
'Application_Model_InseeTabVilles' => dirname(__FILE__) . '/Model/InseeTabVilles.php',
'Application_Model_JoAssoBilans' => dirname(__FILE__) . '/Model/JoAssoBilans.php',
'Application_Model_JoAssoSubventions' => dirname(__FILE__) . '/Model/JoAssoSubventions.php',
'Application_Model_JoBilans' => dirname(__FILE__) . '/Model/JoBilans.php',
'Application_Model_JoBilansUser' => dirname(__FILE__) . '/Model/JoBilansUser.php',
'Application_Model_JoBoampLots' => dirname(__FILE__) . '/Model/JoBoampLots.php',
'Application_Model_JoBodaccDetail' => dirname(__FILE__) . '/Model/JoBodaccDetail.php',
'Application_Model_JoBodaccFonctions' => dirname(__FILE__) . '/Model/JoBodaccFonctions.php',
'Application_Model_JoGreffesActes' => dirname(__FILE__) . '/Model/JoGreffesActes.php',
'Application_Model_JoGreffesBilans' => dirname(__FILE__) . '/Model/JoGreffesBilans.php',
'Application_Model_JoLiens' => dirname(__FILE__) . '/Model/JoLiens.php',
'Application_Model_JoLiensDoc' => dirname(__FILE__) . '/Model/JoLiensDoc.php',
'Application_Model_JoLiensRef' => dirname(__FILE__) . '/Model/JoLiensRef.php',
'Application_Model_JoRncsDirigeants' => dirname(__FILE__) . '/Model/JoRncsDirigeants.php',
'Application_Model_JoScoresCutoff' => dirname(__FILE__) . '/Model/JoScoresCutoff.php',
'Application_Model_JoScoresCutoffMvt' => dirname(__FILE__) . '/Model/JoScoresCutoffMvt.php',
'Application_Model_JoScoresSurveillance' => dirname(__FILE__) . '/Model/JoScoresSurveillance.php',
'Application_Model_JoSurveillancesSite' => dirname(__FILE__) . '/Model/JoSurveillancesSite.php',
'Application_Model_JoTabDevises' => dirname(__FILE__) . '/Model/JoTabDevises.php',
'Application_Model_JoTabEvenements' => dirname(__FILE__) . '/Model/JoTabEvenements.php',
'Application_Model_JoTabFJur' => dirname(__FILE__) . '/Model/JoTabFJur.php',
'Application_Model_JoTabNaf5' => dirname(__FILE__) . '/Model/JoTabNaf5.php',
'Application_Model_JoTabPays' => dirname(__FILE__) . '/Model/JoTabPays.php',
'Application_Model_JoTelephonie' => dirname(__FILE__) . '/Model/JoTelephonie.php',
'Application_Model_Sdv1BourseIsin' => dirname(__FILE__) . '/Model/Sdv1BourseIsin.php',
'Application_Model_Sdv1Clients' => dirname(__FILE__) . '/Model/Sdv1Clients.php',
'Application_Model_Sdv1ClientsServices' => dirname(__FILE__) . '/Model/Sdv1ClientsServices.php',
'Application_Model_Sdv1ClientsTarifs' => dirname(__FILE__) . '/Model/Sdv1ClientsTarifs.php',
'Application_Model_Sdv1GreffeCommandesAc' => dirname(__FILE__) . '/Model/Sdv1GreffeCommandesAc.php',
'Application_Model_Sdv1GreffeCommandesBi' => dirname(__FILE__) . '/Model/Sdv1GreffeCommandesBi.php',
'Application_Model_Sdv1GreffeCommandesKb' => dirname(__FILE__) . '/Model/Sdv1GreffeCommandesKb.php',
'Application_Model_Sdv1Prestations' => dirname(__FILE__) . '/Model/Sdv1Prestations.php',
'Application_Model_Sdv1TabIdLocal' => dirname(__FILE__) . '/Model/Sdv1TabIdLocal.php',
'Application_Model_Sdv1Utilisateurs' => dirname(__FILE__) . '/Model/Sdv1Utilisateurs.php',
'Application_Model_Sdv1UtilisateursService' => dirname(__FILE__) . '/Model/Sdv1UtilisateursService.php',
);

View File

@ -1,9 +1,9 @@
<?php
$dirname_52e8e703f23a4 = dirname(__FILE__);
return array (
'Scores_Auth_Adapter_Db' => $dirname_52e8e703f23a4 . DIRECTORY_SEPARATOR . 'Auth' . DIRECTORY_SEPARATOR . 'Adapter' . DIRECTORY_SEPARATOR . 'Db.php',
'Scores_Auth_Adapter_Ws' => $dirname_52e8e703f23a4 . DIRECTORY_SEPARATOR . 'Auth' . DIRECTORY_SEPARATOR . 'Adapter' . DIRECTORY_SEPARATOR . 'Ws.php',
'Scores_Wkhtml_Pdf' => $dirname_52e8e703f23a4 . DIRECTORY_SEPARATOR . 'Wkhtml' . DIRECTORY_SEPARATOR . 'Pdf.php',
'Scores_Ws_Doc' => $dirname_52e8e703f23a4 . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Doc.php',
'Scores_Ws_Form_GetIdentite' => $dirname_52e8e703f23a4 . DIRECTORY_SEPARATOR . 'Ws' . DIRECTORY_SEPARATOR . 'Form' . DIRECTORY_SEPARATOR . 'GetIdentite.php',
);
// Generated by ZF's ./bin/classmap_generator.php
return array(
'Scores_Auth_Adapter_Db' => dirname(__FILE__) . '//Auth/Adapter/Db.php',
'Scores_Auth_Adapter_Ws' => dirname(__FILE__) . '//Auth/Adapter/Ws.php',
'Scores_Wkhtml_Pdf' => dirname(__FILE__) . '//Wkhtml/Pdf.php',
'Scores_Ws_Doc' => dirname(__FILE__) . '//Ws/Doc.php',
'Scores_Ws_Form_GetIdentite' => dirname(__FILE__) . '//Ws/Form/GetIdentite.php',
);