Merge from branch 2.7 ready for release
This commit is contained in:
commit
5e131027d6
@ -182,8 +182,8 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
|
|
||||||
//Assign vars
|
//Assign vars
|
||||||
$this->view->assign('scores', $histoScores->result->item);
|
$this->view->assign('scores', $histoScores->result->item);
|
||||||
if ($histoScores->type == 'indiScore20') $histoScores->type = 'indiScore';
|
$this->view->assign('typeTxt', $histoScores->type);
|
||||||
$this->view->assign('type', $histoScores->type);
|
$this->view->assign('type', $type);
|
||||||
$this->view->assign('bornes', $bornes);
|
$this->view->assign('bornes', $bornes);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -209,7 +209,7 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
$autrePage = $request->getParam('apage');
|
$autrePage = $request->getParam('apage');
|
||||||
|
|
||||||
//Récupération des informations
|
// --- Récupération des informations
|
||||||
if ( empty($autrePage) ) {
|
if ( empty($autrePage) ) {
|
||||||
$this->view->headTitle()->prepend('IndiScore');
|
$this->view->headTitle()->prepend('IndiScore');
|
||||||
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
||||||
@ -252,11 +252,12 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
|
|
||||||
$siren = substr($this->siret,0,9);
|
$siren = substr($this->siret,0,9);
|
||||||
|
|
||||||
|
//@todo : transformer le webservice pour ne faire qu'une seule requete
|
||||||
$ws = new WsScores();
|
$ws = new WsScores();
|
||||||
$entreprise = new Scores_Session_Entreprise($this->siret, $this->id);
|
$entreprise = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||||
$identite = $ws->getIdentite($siren);
|
$identite = $ws->getIdentite($siren);
|
||||||
$indiscore = $ws->getIndiScore($siren);
|
$indiscore = $ws->getIndiScore($siren);
|
||||||
$infos = $ws->getRatios($siren, 'indiscore2'); // @todo : vérifier la page
|
$infos = $ws->getRatios($siren, 'indiscore2');
|
||||||
|
|
||||||
$score = array();
|
$score = array();
|
||||||
$tabRatio = array(
|
$tabRatio = array(
|
||||||
@ -280,7 +281,8 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
|
|
||||||
if ($nbBilanN!=0)
|
if ($nbBilanN!=0)
|
||||||
{
|
{
|
||||||
foreach($tabRatio as $idRatio => $valRatio){
|
foreach($tabRatio as $idRatio => $valRatio)
|
||||||
|
{
|
||||||
$tabRatio[$idRatio]['comment'] = $ratiosData->wrapComment($idRatio);
|
$tabRatio[$idRatio]['comment'] = $ratiosData->wrapComment($idRatio);
|
||||||
}
|
}
|
||||||
$this->view->assign('tabRatio', $tabRatio);
|
$this->view->assign('tabRatio', $tabRatio);
|
||||||
@ -294,15 +296,18 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
$annees = array_slice($annees, 0, $nbMaxBilan);
|
$annees = array_slice($annees, 0, $nbMaxBilan);
|
||||||
sort($annees);
|
sort($annees);
|
||||||
$tabResult = array();
|
$tabResult = array();
|
||||||
foreach($annees as $annee){
|
foreach($annees as $annee)
|
||||||
|
{
|
||||||
$data = array();
|
$data = array();
|
||||||
$dataEvol = array();
|
$dataEvol = array();
|
||||||
//Formatter les données
|
//Formatter les données
|
||||||
foreach($tabRatio as $idRatio => $valRatio){
|
foreach($tabRatio as $idRatio => $valRatio)
|
||||||
|
{
|
||||||
$data[$idRatio] = $ratiosData->dRatio($typeBilan, $annee, $idRatio);
|
$data[$idRatio] = $ratiosData->dRatio($typeBilan, $annee, $idRatio);
|
||||||
$dataTotal[$idRatio] = $ratiosData->dTotal($typeBilan, $annee, $idRatio, $valRatio['total']);
|
$dataTotal[$idRatio] = $ratiosData->dTotal($typeBilan, $annee, $idRatio, $valRatio['total']);
|
||||||
$dInfo[$idRatio] = $valRatio['total_info'];
|
$dInfo[$idRatio] = $valRatio['total_info'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$date = new Zend_Date($annee, 'yyyyMMdd');
|
$date = new Zend_Date($annee, 'yyyyMMdd');
|
||||||
$tabResult[] = array(
|
$tabResult[] = array(
|
||||||
'dateCloture' => $date->toString('dd/MM/yyyy'),
|
'dateCloture' => $date->toString('dd/MM/yyyy'),
|
||||||
@ -363,6 +368,8 @@ class EvaluationController extends Zend_Controller_Action
|
|||||||
foreach($indiscore->scores as $name => $sc){
|
foreach($indiscore->scores as $name => $sc){
|
||||||
if($name == 'ConanH')
|
if($name == 'ConanH')
|
||||||
$score[$name] = array($sc, 'Score Conan Holder');
|
$score[$name] = array($sc, 'Score Conan Holder');
|
||||||
|
if($name == 'Afdcc1')
|
||||||
|
$score[$name] = array($sc, 'Score Afdcc 1');
|
||||||
if($name == 'Afdcc2')
|
if($name == 'Afdcc2')
|
||||||
$score[$name] = array($sc, 'Score Afdcc 2');
|
$score[$name] = array($sc, 'Score Afdcc 2');
|
||||||
if($name == 'Z')
|
if($name == 'Z')
|
||||||
|
@ -429,8 +429,6 @@ class FinanceController extends Zend_Controller_Action
|
|||||||
$typeBilan = $request->getParam('typeBilan');
|
$typeBilan = $request->getParam('typeBilan');
|
||||||
$dateCloture = $request->getParam('dateCloture');
|
$dateCloture = $request->getParam('dateCloture');
|
||||||
|
|
||||||
Zend_Registry::get('firebug')->info($request->getParams());
|
|
||||||
|
|
||||||
$c = Zend_Registry::get('config');
|
$c = Zend_Registry::get('config');
|
||||||
$path = $c->profil->path->pages . '/imgcache/';
|
$path = $c->profil->path->pages . '/imgcache/';
|
||||||
switch($type){
|
switch($type){
|
||||||
@ -708,7 +706,6 @@ class FinanceController extends Zend_Controller_Action
|
|||||||
|
|
||||||
$this->view->assign('email', $user->getEmail());
|
$this->view->assign('email', $user->getEmail());
|
||||||
$this->view->assign('siren', $params['siren']);
|
$this->view->assign('siren', $params['siren']);
|
||||||
Zend_Registry::get('firebug')->info($params);
|
|
||||||
|
|
||||||
$ref = $params['ref'];
|
$ref = $params['ref'];
|
||||||
|
|
||||||
@ -1420,7 +1417,6 @@ class FinanceController extends Zend_Controller_Action
|
|||||||
$ws = new WsScores();
|
$ws = new WsScores();
|
||||||
$response = $ws->getEntrepriseLiasseInfos($siren);
|
$response = $ws->getEntrepriseLiasseInfos($siren);
|
||||||
|
|
||||||
Zend_Registry::get('firebug')->info($response);
|
|
||||||
if ( $response === null ) {
|
if ( $response === null ) {
|
||||||
$this->view->assign('msg','Aucun bilan déposé.');
|
$this->view->assign('msg','Aucun bilan déposé.');
|
||||||
} else {
|
} else {
|
||||||
|
@ -638,8 +638,6 @@ class IdentiteController extends Zend_Controller_Action
|
|||||||
$this->view->assign('surveillance', $user->checkPerm('survdirigeants'));
|
$this->view->assign('surveillance', $user->checkPerm('survdirigeants'));
|
||||||
}
|
}
|
||||||
|
|
||||||
Zend_Registry::get('firebug')->info($identite);
|
|
||||||
|
|
||||||
if ($identite->PpPm=='PP') {
|
if ($identite->PpPm=='PP') {
|
||||||
$this->view->assign('PP', true);
|
$this->view->assign('PP', true);
|
||||||
$this->view->assign('nom', $identite->nom);
|
$this->view->assign('nom', $identite->nom);
|
||||||
@ -675,7 +673,6 @@ class IdentiteController extends Zend_Controller_Action
|
|||||||
}
|
}
|
||||||
|
|
||||||
$infos = $ws->getLiens($siren);
|
$infos = $ws->getLiens($siren);
|
||||||
Zend_Registry::get('firebug')->info($infos);
|
|
||||||
if (is_string($infos) || $infos === false) $this->_forward('soap', 'error');
|
if (is_string($infos) || $infos === false) $this->_forward('soap', 'error');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2005,7 +2002,7 @@ class IdentiteController extends Zend_Controller_Action
|
|||||||
$pdf->setColorArray('text', array(255,0,0));
|
$pdf->setColorArray('text', array(255,0,0));
|
||||||
$pdf->Cell(0, 0, "Cette entreprise est radiée au RNCS.", 0, 1, 'C');
|
$pdf->Cell(0, 0, "Cette entreprise est radiée au RNCS.", 0, 1, 'C');
|
||||||
}
|
}
|
||||||
$pdf->setColorArray('text', array(255,255,255));
|
$pdf->setColorArray('text', array(0,0,0));
|
||||||
$pdf->Cell(0, 0, "Dénomination sociale : ".$Nom, 0, 1, 'L');
|
$pdf->Cell(0, 0, "Dénomination sociale : ".$Nom, 0, 1, 'L');
|
||||||
if( empty($Sigle) ) {
|
if( empty($Sigle) ) {
|
||||||
$pdf->Cell(0, 0, "Sigle : -", 0, 1, 'L');
|
$pdf->Cell(0, 0, "Sigle : -", 0, 1, 'L');
|
||||||
@ -2017,10 +2014,10 @@ class IdentiteController extends Zend_Controller_Action
|
|||||||
} else {
|
} else {
|
||||||
$pdf->Cell(0, 0, "Enseigne : ".$Enseigne, 0, 1, 'L');
|
$pdf->Cell(0, 0, "Enseigne : ".$Enseigne, 0, 1, 'L');
|
||||||
}
|
}
|
||||||
if( empty($Sigle) ) {
|
if( empty($NomCommercial) ) {
|
||||||
$pdf->Cell(0, 0, "Nom Commercial : -", 0, 1, 'L');
|
$pdf->Cell(0, 0, "Nom Commercial : -", 0, 1, 'L');
|
||||||
} else {
|
} else {
|
||||||
$pdf->Cell(0, 0, "Nom Commercial : ".$NomComercial, 0, 1, 'L');
|
$pdf->Cell(0, 0, "Nom Commercial : ".$NomCommercial, 0, 1, 'L');
|
||||||
}
|
}
|
||||||
$pdf->Cell(0, 0, "Numéro d'identification : ".$Siren." RCS ".$Tribunal, 0, 1, 'L');
|
$pdf->Cell(0, 0, "Numéro d'identification : ".$Siren." RCS ".$Tribunal, 0, 1, 'L');
|
||||||
$pdf->Cell(0, 0, "Numéro de gestion : ".$NumGest, 0, 1, 'L');
|
$pdf->Cell(0, 0, "Numéro de gestion : ".$NumGest, 0, 1, 'L');
|
||||||
|
@ -20,6 +20,7 @@ class JuridiqueController extends Zend_Controller_Action
|
|||||||
{
|
{
|
||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
|
|
||||||
|
$autrePage = $request->getParam('apage');
|
||||||
$vue = $request->getParam('vue', 'bodacc');
|
$vue = $request->getParam('vue', 'bodacc');
|
||||||
|
|
||||||
$idAnn = $request->getParam('idAnn', null);
|
$idAnn = $request->getParam('idAnn', null);
|
||||||
@ -44,7 +45,7 @@ class JuridiqueController extends Zend_Controller_Action
|
|||||||
$this->view->assign('siren', $siren);
|
$this->view->assign('siren', $siren);
|
||||||
$this->view->assign('siret', $this->siret);
|
$this->view->assign('siret', $this->siret);
|
||||||
$this->view->assign('raisonSociale', $session->getRaisonSociale());
|
$this->view->assign('raisonSociale', $session->getRaisonSociale());
|
||||||
$this->view->assign('AutrePage', $request->getParam('apage'));
|
$this->view->assign('AutrePage', $autrePage);
|
||||||
|
|
||||||
if ($session->getSource()=='006' || $session->getSourceId()=='007') {
|
if ($session->getSource()=='006' || $session->getSourceId()=='007') {
|
||||||
|
|
||||||
@ -166,18 +167,20 @@ class JuridiqueController extends Zend_Controller_Action
|
|||||||
$this->renderScript('juridique/annonce.phtml');
|
$this->renderScript('juridique/annonce.phtml');
|
||||||
}
|
}
|
||||||
|
|
||||||
//Affichage pour la liste des annonces
|
// --- Affichage pour la liste des annonces
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
//Titre de la page
|
// --- Titre de la page
|
||||||
|
if ( empty($autrePage) ) {
|
||||||
if( empty($siren) ){
|
if( empty($siren) ){
|
||||||
$titre = 'Identifiant '.$this->id;
|
$titre = 'Identifiant '.$this->id;
|
||||||
} else {
|
} else {
|
||||||
$titre = 'Siret '.$siren;
|
$titre = 'Siret '.$siren;
|
||||||
}
|
}
|
||||||
$this->view->headTitle()->prepend('Annonces Légales - '.$titre);
|
$this->view->headTitle()->prepend('Annonces Légales - '.$titre);
|
||||||
|
}
|
||||||
|
|
||||||
//Calcul pagination
|
// ---- Calcul pagination
|
||||||
$nbReponses = count($infos->result->item);
|
$nbReponses = count($infos->result->item);
|
||||||
$nbReponsesTotal = $infos->nbReponses;
|
$nbReponsesTotal = $infos->nbReponses;
|
||||||
if ($nbReponses < $nbReponsesTotal) {
|
if ($nbReponses < $nbReponsesTotal) {
|
||||||
|
@ -30,8 +30,7 @@ class PrintController extends Zend_Controller_Action
|
|||||||
$params['mil'] = $elements[5];
|
$params['mil'] = $elements[5];
|
||||||
break;
|
break;
|
||||||
case 'liasse':
|
case 'liasse':
|
||||||
$params['unit'] = $elements[4];
|
$params['date'] = $elements[3];
|
||||||
$params['date'] = $elements[5];
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$params['siret'] = $elements[2];
|
$params['siret'] = $elements[2];
|
||||||
|
@ -36,10 +36,13 @@
|
|||||||
<td class="StyleInfoData" width="270"><?=$dir->Titre?></td>
|
<td class="StyleInfoData" width="270"><?=$dir->Titre?></td>
|
||||||
<td class="StyleInfoData" width="200"><?=$dir->Societe.' '.$dir->Nom.' '.$dir->Prenom?></td>
|
<td class="StyleInfoData" width="200"><?=$dir->Societe.' '.$dir->Nom.' '.$dir->Prenom?></td>
|
||||||
<td class="StyleInfoData" width="200">
|
<td class="StyleInfoData" width="200">
|
||||||
<?php $date = new Zend_Date($dir->DateFct,'yyyy-MM-dd'); ?>
|
<?php
|
||||||
|
if ($dir->DateFct != '0000-00-00') {
|
||||||
|
$date = new Zend_Date($dir->DateFct,'yyyy-MM-dd'); ?>
|
||||||
<?php if ( Zend_Date::isDate($date) ) { ?>
|
<?php if ( Zend_Date::isDate($date) ) { ?>
|
||||||
<?=$this->translate("Modification le") . ' ' . $date->toString('dd/MM/yyyy');?>
|
<?=$this->translate("Modification le") . ' ' . $date->toString('dd/MM/yyyy');?>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
|
<?php }?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
|
@ -203,7 +203,8 @@ if ($this->indiscore->Enseigne!='' && $this->indiscore->Sigle!='') {
|
|||||||
<td width="30"> </td>
|
<td width="30"> </td>
|
||||||
<td width="550" colspan="2" class="StyleInfoData">
|
<td width="550" colspan="2" class="StyleInfoData">
|
||||||
<i>Pour information, les méthodes standards donnent : Conan & Holder = <b><?php echo $this->indiscore->scores->ConanH;?></b>,
|
<i>Pour information, les méthodes standards donnent : Conan & Holder = <b><?php echo $this->indiscore->scores->ConanH;?></b>,
|
||||||
Afdcc2 = <b><?php echo $this->indiscore->scores->Afdcc2;?></b> et Score Z = <b><?php echo $this->indiscore->scores->Z;?></b>.</i>
|
Afdcc1 = <b><?php echo $this->indiscore->scores->Afdcc1;?></b>, Afdcc2 = <b><?php echo $this->indiscore->scores->Afdcc2;?></b>
|
||||||
|
et Score Z = <b><?php echo $this->indiscore->scores->Z;?></b>.</i>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -281,6 +282,7 @@ if ($this->indiscore->Enseigne!='' && $this->indiscore->Sigle!='') {
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td colspan="3" align="center"><img class="notvisible" src="/themes/default/images/indiscore/logo_indiscore.png"/></td></tr>
|
<tr><td colspan="3" align="center"><img class="notvisible" src="/themes/default/images/indiscore/logo_indiscore.png"/></td></tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -55,9 +55,6 @@ echo $this->action('liens', 'identite', null, array('siret' => $this->siret, 'id
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
|
||||||
Zend_Registry::get('firebug')->info($this->tabResult);
|
|
||||||
?>
|
|
||||||
<?php foreach($this->tabRatio as $ratio => $info) { ?>
|
<?php foreach($this->tabRatio as $ratio => $info) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="head"><a class="tooltip" title="<?=$info['comment']?>"><?=$info['titre']?></a></td>
|
<td class="head"><a class="tooltip" title="<?=$info['comment']?>"><?=$info['titre']?></a></td>
|
||||||
@ -66,7 +63,7 @@ Zend_Registry::get('firebug')->info($this->tabResult);
|
|||||||
<td class="right"><?=$this->tabResult[1]['ratio'][$ratio]?></td>
|
<td class="right"><?=$this->tabResult[1]['ratio'][$ratio]?></td>
|
||||||
<td class="right" title="<?=$this->tabResult[1]['info'][$ratio]?>"><?=$this->tabResult[1]['total'][$ratio]?> %</td>
|
<td class="right" title="<?=$this->tabResult[1]['info'][$ratio]?>"><?=$this->tabResult[1]['total'][$ratio]?> %</td>
|
||||||
<td class="right"><?=$this->tabResult[2]['ratio'][$ratio]?></td>
|
<td class="right"><?=$this->tabResult[2]['ratio'][$ratio]?></td>
|
||||||
<td class="right" title="<?=$this->tabResult[2]['info'][$ratio]?>"><?=$this->tabResult[3]['total'][$ratio]?> %</td>
|
<td class="right" title="<?=$this->tabResult[2]['info'][$ratio]?>"><?=$this->tabResult[2]['total'][$ratio]?> %</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
<div id="center">
|
|
||||||
|
|
||||||
<h1><?=$this->translate('HISTORIQUE INDISCORE')?></h1>
|
|
||||||
<div class="paragraph">
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td width="30"> </td>
|
|
||||||
<td width="200" class="StyleInfoLib"><?=$this->translate('Numéro identifiant Siren')?></td>
|
|
||||||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td width="30"> </td>
|
|
||||||
<td width="200" class="StyleInfoLib"><?=$this->translate('Dénomination sociale')?></td>
|
|
||||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2><?=$this->translate('Historique des scores')?></h2>
|
|
||||||
|
|
||||||
<?php if ( count($this->scores)> 0 ) {?>
|
|
||||||
|
|
||||||
<div class="paragraph">
|
|
||||||
<table id="synthese">
|
|
||||||
<thead>
|
|
||||||
<tr class="head">
|
|
||||||
<th align="center"><?=$this->translate('Date')?></td>
|
|
||||||
<th align="center"><?=$this->translate('IndiScore')?></td>
|
|
||||||
<th><?=$this->translate('Motif du changement')?></td>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<?php foreach($this->scores as $score) {?>
|
|
||||||
<tr>
|
|
||||||
<td align="center">
|
|
||||||
<?php $date = new Zend_Date($score->date, 'yyyy-MM-dd');?>
|
|
||||||
<?=$date->toString('dd/MM/yyyy')?>
|
|
||||||
</td>
|
|
||||||
<td align="center"><?=$score->value?> </td>
|
|
||||||
<td><?=$score->label?></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
<?php }?>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="paragraph">
|
|
||||||
<?php if ( $this->graph ) {?>
|
|
||||||
<img src="/fichier/imgcache/<?=$this->graph?>">
|
|
||||||
<?php } else {?>
|
|
||||||
<b><?=$this->translate('Impossible de générer le graphique')?></b>
|
|
||||||
<?php }?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php } else {?>
|
|
||||||
|
|
||||||
<div class="paragraph">
|
|
||||||
<?=$this->translate("Aucune information sur l'historique disponible.")?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php }?>
|
|
||||||
|
|
||||||
<?=$this->render('cgu.phtml', $this->cgu)?>
|
|
||||||
</div>
|
|
@ -33,45 +33,52 @@ $('select[name=type]').change(function(e){
|
|||||||
|
|
||||||
<div class="paragraph">
|
<div class="paragraph">
|
||||||
<p>
|
<p>
|
||||||
<?php switch ( $this->type ) {
|
<?php switch ( $this->typeTxt ) {?>
|
||||||
case 'indiScore':?>
|
<?php case 'indiScore20':?>
|
||||||
|
L'indiscore évalue le risque de faillite d'entreprise à 12 mois à partir de trois axes: le respect,
|
||||||
|
l'analyse historique des représentants légaux et l'analyse du bilan. Les informations sur l’environnement économique
|
||||||
|
des entreprises (secteurs d'activité, groupe, paiements) complète l'analyse de l'indiscore. Un indiscore entre 0 et
|
||||||
|
8/20 indiquera un risque élevé, entre 8 et 12/20 un risque moyen et un indiscore compris entre 12 et 20/20
|
||||||
|
un risque faible. Un avis de crédit fournisseur/client est donné, jusqu'à concurrence de 500 K€.
|
||||||
|
<?php break; ?>
|
||||||
|
<?php case 'indiScore':?>
|
||||||
L'indiscore évalue le risque de faillite d'entreprise à 12 mois à partir de trois axes: le respect,
|
L'indiscore évalue le risque de faillite d'entreprise à 12 mois à partir de trois axes: le respect,
|
||||||
l'analyse historique des représentants légaux et l'analyse du bilan. Les informations sur l’environnement économique
|
l'analyse historique des représentants légaux et l'analyse du bilan. Les informations sur l’environnement économique
|
||||||
des entreprises (secteurs d'activité, groupe, paiements) complète l'analyse de l'indiscore. Un indiscore entre 0 et
|
des entreprises (secteurs d'activité, groupe, paiements) complète l'analyse de l'indiscore. Un indiscore entre 0 et
|
||||||
35/100 indiquera un risque élevé, entre 35 et 55/100 un risque moyen et un indiscore compris entre 55 et 100/100
|
35/100 indiquera un risque élevé, entre 35 et 55/100 un risque moyen et un indiscore compris entre 55 et 100/100
|
||||||
un risque faible. Un avis de crédit fournisseur/client est donné, jusqu'à concurrence de 500 K€.
|
un risque faible. Un avis de crédit fournisseur/client est donné, jusqu'à concurrence de 500 K€.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreDir':?>
|
<?php case 'scoreDir':?>
|
||||||
Évaluation de l'équipe dirigeante en place. Système S&D
|
Évaluation de l'équipe dirigeante en place. Système S&D
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreConf':?>
|
<?php case 'scoreConf':?>
|
||||||
Évaluation de l'adéquation entre les déclarations et l'information disponible auprès des sources officielles françaises. Système S&D
|
Évaluation de l'adéquation entre les déclarations et l'information disponible auprès des sources officielles françaises. Système S&D
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreZ':?>
|
<?php case 'scoreZ':?>
|
||||||
Le score Z de la Banque de France permet de déceler les défaillances d’entreprises. Ces dernières sont caractérisées
|
Le score Z de la Banque de France permet de déceler les défaillances d’entreprises. Ces dernières sont caractérisées
|
||||||
par 19 ratios retraçant quatre aspects de leur comportement : structure financière, dynamisme, rentabilité, gestion courante.
|
par 19 ratios retraçant quatre aspects de leur comportement : structure financière, dynamisme, rentabilité, gestion courante.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreCH':?>
|
<?php case 'scoreCH':?>
|
||||||
Le score CONAN et HOLDER (1979) est une méthode conseillée pour les entreprises industrielles réalisant un chiffre
|
Le score CONAN et HOLDER (1979) est une méthode conseillée pour les entreprises industrielles réalisant un chiffre
|
||||||
d'affaires de 1,5 à 75 millions d’euros. Il permet un classement des sociétés des plus risquées (score inférieur à
|
d'affaires de 1,5 à 75 millions d’euros. Il permet un classement des sociétés des plus risquées (score inférieur à
|
||||||
6,8) aux plus saines (score supérieur à 16,4).
|
6,8) aux plus saines (score supérieur à 16,4).
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreAfdcc1':?>
|
<?php case 'scoreAfdcc1':?>
|
||||||
1er indicateur synthétique de vulnérabilité établi par l'Association Françaises des Crédits managers et Conseils.
|
1er indicateur synthétique de vulnérabilité établi par l'Association Françaises des Crédits managers et Conseils.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreAfdcc2':?>
|
<?php case 'scoreAfdcc2':?>
|
||||||
Le score sectoriel AFDCC2 (1999) s’applique aux sociétés réalisant un chiffre d’affaires de 150.000 à 75 millions
|
Le score sectoriel AFDCC2 (1999) s’applique aux sociétés réalisant un chiffre d’affaires de 150.000 à 75 millions
|
||||||
d'euros. Il comprend 11 fonctions pour 7 secteurs d'activité en différenciant les TPE des PME. Il s'adresse plus
|
d'euros. Il comprend 11 fonctions pour 7 secteurs d'activité en différenciant les TPE des PME. Il s'adresse plus
|
||||||
spécialement au Credit Manager, étant axé sur la solvabilité de l'entreprise à court terme.
|
spécialement au Credit Manager, étant axé sur la solvabilité de l'entreprise à court terme.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreAltman':?>
|
<?php case 'scoreAltman':?>
|
||||||
Évaluation synthétique permettant la prévision de défaillance d'une entreprise à partir de ratios, liquidité,
|
Évaluation synthétique permettant la prévision de défaillance d'une entreprise à partir de ratios, liquidité,
|
||||||
solvablilité, rentabilité, activité, croissance. Appelé aussi Z Score d'Altman.
|
solvablilité, rentabilité, activité, croissance. Appelé aussi Z Score d'Altman.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
case 'scoreCCF':?>
|
<?php case 'scoreCCF':?>
|
||||||
Évaluation à 3 ans de la probabilité de défaillance d'une entreprise.
|
Évaluation à 3 ans de la probabilité de défaillance d'une entreprise.
|
||||||
<?php break;
|
<?php break; ?>
|
||||||
}?>
|
<?php }?>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -22,9 +22,9 @@
|
|||||||
<td align="center">AA</td>
|
<td align="center">AA</td>
|
||||||
<td align="right" class="amount-value" class="amount-value"><?php echo $this->liasse['AA'];?></td>
|
<td align="right" class="amount-value" class="amount-value"><?php echo $this->liasse['AA'];?></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
<td align="right" class="amount-value"> </td>
|
||||||
<td align="right" class="amount-value"><?php echo $this->liasse['AA2'];?></td>
|
<td align="right" class="amount-value"><?php echo $this->liasse['AA2'];?></td>
|
||||||
<td align="right" class="amount-value"><?php echo $this->liasse['AA3'];?></td>
|
<td align="right" class="amount-value"><?php echo $this->liasse['AA3'];?></td>
|
||||||
<td align="right" class="amount-value"></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Frais d'établissement</td>
|
<td>Frais d'établissement</td>
|
||||||
|
@ -4,10 +4,6 @@ window.onload = function() {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
body {font-family:Verdana, Arial, sans-serif;font-size: 11px;}
|
#content {float:none;clear:both;width:auto;padding:0;margin:0;padding-top:20px;}
|
||||||
#global {width:auto !important;text-align:left;}
|
|
||||||
#content {margin:5px; padding:0; width:auto;}
|
|
||||||
table {page-break-inside:avoid}
|
|
||||||
div.paragraph {page-break-inside:avoid}
|
|
||||||
</style>
|
</style>
|
||||||
<?=$this->action($this->action, $this->controller, null, $this->params)?>
|
<?=$this->action($this->action, $this->controller, null, $this->params)?>
|
@ -1327,7 +1327,7 @@
|
|||||||
<td align="center">LI</td>
|
<td align="center">LI</td>
|
||||||
<td align="right"><?=$this->Editable('LI',$this->liasse['LI'],'poste');?></td>
|
<td align="right"><?=$this->Editable('LI',$this->liasse['LI'],'poste');?></td>
|
||||||
<td align="center">LJ</td>
|
<td align="center">LJ</td>
|
||||||
<td align="right"><?=$this->Editable('LJ',$this->liasse['LJ'],'LJ','poste');?></td>
|
<td align="right"><?=$this->Editable('LJ',$this->liasse['LJ'],'poste');?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">Avances et acomptes</td>
|
<td colspan="2">Avances et acomptes</td>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Loader
|
* @package Zend_Loader
|
||||||
* @subpackage Exception
|
* @subpackage Exception
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -192,7 +192,7 @@ if ($appending) {
|
|||||||
$content = var_export((array) $map, true) . ';';
|
$content = var_export((array) $map, true) . ';';
|
||||||
|
|
||||||
// Prefix with dirname(__FILE__); modify the generated content
|
// Prefix with dirname(__FILE__); modify the generated content
|
||||||
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '", $content);
|
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '/", $content);
|
||||||
|
|
||||||
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
|
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
|
||||||
$content = str_replace("\\'", "'", $content);
|
$content = str_replace("\\'", "'", $content);
|
||||||
@ -215,7 +215,7 @@ if ($appending) {
|
|||||||
. 'return ' . var_export((array) $map, true) . ';';
|
. 'return ' . var_export((array) $map, true) . ';';
|
||||||
|
|
||||||
// Prefix with dirname(__FILE__); modify the generated content
|
// Prefix with dirname(__FILE__); modify the generated content
|
||||||
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '", $content);
|
$content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '/", $content);
|
||||||
|
|
||||||
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
|
// Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op
|
||||||
$content = str_replace("\\'", "'", $content);
|
$content = str_replace("\\'", "'", $content);
|
||||||
|
@ -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 to license@zend.com so we can send you a copy immediately.
|
||||||
REM
|
REM
|
||||||
REM Zend
|
REM Zend
|
||||||
REM Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
REM Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
REM http://framework.zend.com/license/new-bsd New BSD License
|
REM http://framework.zend.com/license/new-bsd New BSD License
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Tool
|
* @package Zend_Tool
|
||||||
* @subpackage Framework
|
* @subpackage Framework
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Tool
|
* @package Zend_Tool
|
||||||
* @subpackage Framework
|
* @subpackage Framework
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class ZF
|
class ZF
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# to license@zend.com so we can send you a copy immediately.
|
# to license@zend.com so we can send you a copy immediately.
|
||||||
#
|
#
|
||||||
# Zend
|
# Zend
|
||||||
# Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
# Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
# http://framework.zend.com/license/new-bsd New BSD License
|
# http://framework.zend.com/license/new-bsd New BSD License
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
|
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 1. Set default font family to sans-serif.
|
* 1. Set default font family to sans-serif.
|
||||||
@ -24,7 +24,10 @@ body {
|
|||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Correct `block` display not defined in IE 8/9.
|
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||||
|
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||||
|
* and Firefox.
|
||||||
|
* Correct `block` display not defined for `main` in IE 11.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
article,
|
article,
|
||||||
@ -36,6 +39,7 @@ footer,
|
|||||||
header,
|
header,
|
||||||
hgroup,
|
hgroup,
|
||||||
main,
|
main,
|
||||||
|
menu,
|
||||||
nav,
|
nav,
|
||||||
section,
|
section,
|
||||||
summary {
|
summary {
|
||||||
@ -66,8 +70,8 @@ audio:not([controls]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address `[hidden]` styling not present in IE 8/9.
|
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||||
* Hide the `template` element in IE, Safari, and Firefox < 22.
|
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
[hidden],
|
[hidden],
|
||||||
@ -83,7 +87,7 @@ template {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
a {
|
a {
|
||||||
background: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -99,7 +103,7 @@ a:hover {
|
|||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
@ -107,7 +111,7 @@ abbr[title] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
b,
|
b,
|
||||||
@ -116,7 +120,7 @@ strong {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address styling not present in Safari 5 and Chrome.
|
* Address styling not present in Safari and Chrome.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
dfn {
|
dfn {
|
||||||
@ -125,7 +129,7 @@ dfn {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Address variable `h1` font-size and margin within `section` and `article`
|
* Address variable `h1` font-size and margin within `section` and `article`
|
||||||
* contexts in Firefox 4+, Safari 5, and Chrome.
|
* contexts in Firefox 4+, Safari, and Chrome.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@ -174,7 +178,7 @@ sub {
|
|||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove border when inside `a` element in IE 8/9.
|
* Remove border when inside `a` element in IE 8/9/10.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -182,7 +186,7 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Correct overflow displayed oddly in IE 9.
|
* Correct overflow not hidden in IE 9/10/11.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root) {
|
||||||
@ -193,7 +197,7 @@ svg:not(:root) {
|
|||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address margin not present in IE 8/9 and Safari 5.
|
* Address margin not present in IE 8/9 and Safari.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
@ -242,7 +246,7 @@ samp {
|
|||||||
* 1. Correct color not being inherited.
|
* 1. Correct color not being inherited.
|
||||||
* Known issue: affects color of disabled elements.
|
* Known issue: affects color of disabled elements.
|
||||||
* 2. Correct font properties not being inherited.
|
* 2. Correct font properties not being inherited.
|
||||||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
button,
|
button,
|
||||||
@ -256,7 +260,7 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Address `overflow` set to `hidden` in IE 8/9/10.
|
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@ -266,7 +270,7 @@ button {
|
|||||||
/**
|
/**
|
||||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||||
* All other form control elements do not inherit `text-transform` values.
|
* All other form control elements do not inherit `text-transform` values.
|
||||||
* Correct `button` style inheritance in Firefox, IE 8+, and Opera
|
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||||
* Correct `select` style inheritance in Firefox.
|
* Correct `select` style inheritance in Firefox.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -345,8 +349,8 @@ input[type="number"]::-webkit-outer-spin-button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
||||||
* (include `-moz` to future-proof).
|
* (include `-moz` to future-proof).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -379,7 +383,7 @@ fieldset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 1. Correct `color` not being inherited in IE 8/9.
|
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -389,7 +393,7 @@ legend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove default vertical scrollbar in IE 8/9.
|
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
@ -597,6 +601,12 @@ ul.tabs li a.active {background-color:#ffffff;color:#282e32;border:1px solid #46
|
|||||||
.content ul li a {text-decoration:none;color:#3e4346;}
|
.content ul li a {text-decoration:none;color:#3e4346;}
|
||||||
.content ul li a small {color:#8b959c;font-size:9px;text-transform:uppercase;font-family:Verdana, Arial, Helvetica, sans-serif;position:relative;left:4px;top:0px;}
|
.content ul li a small {color:#8b959c;font-size:9px;text-transform:uppercase;font-family:Verdana, Arial, Helvetica, sans-serif;position:relative;left:4px;top:0px;}
|
||||||
.content ul li:last-child {border-bottom:none;}
|
.content ul li:last-child {border-bottom:none;}
|
||||||
|
table.liasse {width:100%;border-collapse:collapse;}
|
||||||
|
table.liasse th {border:1px solid #000000;padding:8px 4px 8px 4px;background-color:#eeeeee;text-align:center; }
|
||||||
|
table.liasse td.date {text-align:center;background-color:#2b2b8b;color:white;font-weight:bold;width:90px;}
|
||||||
|
table.liasse td {padding:8px 4px 8px 4px;border:1px solid #000000;vertical-align:top;}
|
||||||
|
table.liasse td.decision {min-width:150px;}
|
||||||
|
table.liasse td.type {min-width:250px;}
|
||||||
|
|
||||||
/* Géolocalisation
|
/* Géolocalisation
|
||||||
----------------------------------*/
|
----------------------------------*/
|
||||||
@ -613,7 +623,6 @@ ul.tabs li a.active {background-color:#ffffff;color:#282e32;border:1px solid #46
|
|||||||
#annoncesDate p {margin:0; line-height:16px; vertical-align:middle;}
|
#annoncesDate p {margin:0; line-height:16px; vertical-align:middle;}
|
||||||
#annoncesImg { float:right; border:0; margin:0 20px 0 0;}
|
#annoncesImg { float:right; border:0; margin:0 20px 0 0;}
|
||||||
#annoncesImg img {margin:0; border:0;}
|
#annoncesImg img {margin:0; border:0;}
|
||||||
.listeCompetences { margin:5px 5px 5px 50px;}
|
|
||||||
.listeCompetences li {margin:10px 5px 20px 5px;}
|
.listeCompetences li {margin:10px 5px 20px 5px;}
|
||||||
tr.deleted {text-decoration:line-through;}
|
tr.deleted {text-decoration:line-through;}
|
||||||
|
|
||||||
@ -716,25 +725,27 @@ table.greffe td.decision {min-width:150px;}
|
|||||||
table.greffe td.type { min-width:250px; }
|
table.greffe td.type { min-width:250px; }
|
||||||
table.greffe td.saisie { border-top: 1px dashed; }
|
table.greffe td.saisie { border-top: 1px dashed; }
|
||||||
|
|
||||||
/* Kbis
|
|
||||||
----------------------------------*/
|
|
||||||
/* progress bar container */
|
|
||||||
#progressbar {border:1px solid black;width:200px;height:20px;position:relative;color:black;}
|
|
||||||
/* color bar */
|
|
||||||
#progressbar div.progress {position:absolute;width:0;height:100%;overflow:hidden;background-color:#369;}
|
|
||||||
/* text on bar */
|
|
||||||
#progressbar div.progress .text {position:absolute;text-align:center;color:white;}
|
|
||||||
/* text off bar */
|
|
||||||
#progressbar div.text {position:absolute;width:100%;height:100%;text-align:center;}
|
|
||||||
|
|
||||||
|
|
||||||
/* Print
|
/* Print
|
||||||
----------------------------------*/
|
----------------------------------*/
|
||||||
@media print {
|
@media print {
|
||||||
body {font-family:Verdana, Arial, sans-serif;font-size: 11px;}
|
@page {
|
||||||
#global {width:auto !important;text-align:left;}
|
size: portrait;
|
||||||
#content {margin:0; padding:0; width:auto; }
|
margin: 1cm;
|
||||||
table {page-break-inside:avoid}
|
};
|
||||||
div.paragraph {page-break-inside:avoid}
|
h1 {
|
||||||
div#menu {display:none;}
|
page-break-before: always;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
page-break-before: avoid;
|
||||||
|
page-break-inside: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
|
body { background-color:#ffffff; font-family:Verdana, Arial, sans-serif; font-size:11px; }
|
||||||
|
global { width:100% !important; margin:0; }
|
||||||
|
#content { float:none; clear:none; width:100% !important; padding:0; margin:0; }
|
||||||
|
div#menu { display:none; }
|
||||||
|
#center { padding:0; }
|
||||||
|
h1 { letter-spacing:none; }
|
||||||
|
#footer { clear:both; text-align:center; margin-top:15px; }
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,7 @@ class Application_Controller_Plugin_Theme extends Zend_Controller_Plugin_Abstrac
|
|||||||
*/
|
*/
|
||||||
if ( $UserLogin ) {
|
if ( $UserLogin ) {
|
||||||
$view->headLink()
|
$view->headLink()
|
||||||
->appendStylesheet('/libs/bootstrap-3.3.1/css/bootstrap.min.css', 'all')
|
->appendStylesheet('/libs/bootstrap-3.3.2/css/bootstrap.min.css', 'all')
|
||||||
->appendStylesheet('/themes/default/styles/user-login.css', 'all');
|
->appendStylesheet('/themes/default/styles/user-login.css', 'all');
|
||||||
} else {
|
} else {
|
||||||
$view->headLink()->appendStylesheet($paramsTheme->pathStyle.'/main.css', 'all');
|
$view->headLink()->appendStylesheet($paramsTheme->pathStyle.'/main.css', 'all');
|
||||||
@ -116,7 +116,7 @@ class Application_Controller_Plugin_Theme extends Zend_Controller_Plugin_Abstrac
|
|||||||
->appendFile('/libs/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9'))
|
->appendFile('/libs/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9'))
|
||||||
->appendFile('/libs/jquery/jquery-1.11.2.min.js', 'text/javascript')
|
->appendFile('/libs/jquery/jquery-1.11.2.min.js', 'text/javascript')
|
||||||
->appendFile('/libs/jquery/jquery.placeholder.js', 'text/javascript')
|
->appendFile('/libs/jquery/jquery.placeholder.js', 'text/javascript')
|
||||||
->appendFile('/libs/bootstrap-3.3.1/js/bootstrap.min.js', 'text/javascript');
|
->appendFile('/libs/bootstrap-3.3.2/js/bootstrap.min.js', 'text/javascript');
|
||||||
} else {
|
} else {
|
||||||
$view->headScript()
|
$view->headScript()
|
||||||
->appendFile('/libs/jquery/jquery-1.11.2.min.js', 'text/javascript');
|
->appendFile('/libs/jquery/jquery-1.11.2.min.js', 'text/javascript');
|
||||||
|
@ -17,7 +17,7 @@ class Scores_Export_Print
|
|||||||
'finance-synthese' => 'siret,id,typeBilan',
|
'finance-synthese' => 'siret,id,typeBilan',
|
||||||
'finance-bilan' => 'siret,id,typeBilan',
|
'finance-bilan' => 'siret,id,typeBilan',
|
||||||
'finance-ratios' => 'siret,id,typeBilan,mil',
|
'finance-ratios' => 'siret,id,typeBilan,mil',
|
||||||
'finance-liasse' => 'siret,id,unit,date',
|
'finance-liasse' => 'siret,id,date',
|
||||||
'finance-bourse' => 'siret,id',
|
'finance-bourse' => 'siret,id',
|
||||||
'finance-banque' => 'siret,id',
|
'finance-banque' => 'siret,id',
|
||||||
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
||||||
@ -53,7 +53,7 @@ class Scores_Export_Print
|
|||||||
'finance-synthese' => 'siret,id,typeBilan',
|
'finance-synthese' => 'siret,id,typeBilan',
|
||||||
'finance-bilan' => 'siret,id,typeBilan',
|
'finance-bilan' => 'siret,id,typeBilan',
|
||||||
'finance-ratios' => 'siret,id,typeBilan,mil',
|
'finance-ratios' => 'siret,id,typeBilan,mil',
|
||||||
'finance-liasse' => 'siret,id,unit,date',
|
'finance-liasse' => 'siret,id,date',
|
||||||
'finance-bourse' => 'siret,id',
|
'finance-bourse' => 'siret,id',
|
||||||
'finance-banque' => 'siret,id',
|
'finance-banque' => 'siret,id',
|
||||||
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
||||||
@ -87,7 +87,7 @@ class Scores_Export_Print
|
|||||||
'finance-synthese' => 'siret,id,typeBilan',
|
'finance-synthese' => 'siret,id,typeBilan',
|
||||||
'finance-bilan' => 'siret,id,typeBilan',
|
'finance-bilan' => 'siret,id,typeBilan',
|
||||||
'finance-ratios' => 'siret,id,typeBilan,mil',
|
'finance-ratios' => 'siret,id,typeBilan,mil',
|
||||||
'finance-liasse' => 'siret,id,unit,date',
|
'finance-liasse' => 'siret,id,date',
|
||||||
'finance-bourse' => 'siret,id',
|
'finance-bourse' => 'siret,id',
|
||||||
'finance-banque' => 'siret,id',
|
'finance-banque' => 'siret,id',
|
||||||
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
'juridique-annonces' => 'siret,id,idAnn,vue,p',
|
||||||
@ -95,7 +95,6 @@ class Scores_Export_Print
|
|||||||
'juridique-competences' => 'siret,id,type',
|
'juridique-competences' => 'siret,id,type',
|
||||||
'juridique-marques' => 'siret,id,idObject',
|
'juridique-marques' => 'siret,id,idObject',
|
||||||
'evaluation-indiscore' => 'siret,id',
|
'evaluation-indiscore' => 'siret,id',
|
||||||
'evaluation-indiscore2' => 'siret,id',
|
|
||||||
'evaluation-indiscore3' => 'siret,id',
|
'evaluation-indiscore3' => 'siret,id',
|
||||||
'evaluation-valorisation' => 'siret,id',
|
'evaluation-valorisation' => 'siret,id',
|
||||||
'evaluation-scoreshisto' => 'siret,id,type',
|
'evaluation-scoreshisto' => 'siret,id,type',
|
||||||
|
@ -103,11 +103,6 @@ class Scores_Finance_Liasse
|
|||||||
'BK1' => '049',
|
'BK1' => '049',
|
||||||
'BK2' => 'N04',
|
'BK2' => 'N04',
|
||||||
|
|
||||||
'BL' => '050',
|
|
||||||
'BM' => '052',
|
|
||||||
'BM1' => '053',
|
|
||||||
'BM2' => 'N05',
|
|
||||||
|
|
||||||
'BT' => '060',
|
'BT' => '060',
|
||||||
'BU' => '062',
|
'BU' => '062',
|
||||||
'BU1' => '063',
|
'BU1' => '063',
|
||||||
@ -341,34 +336,49 @@ class Scores_Finance_Liasse
|
|||||||
}
|
}
|
||||||
else $bilanRN[$posteRN]=$bilanRS[$formule];
|
else $bilanRN[$posteRN]=$bilanRS[$formule];
|
||||||
}
|
}
|
||||||
if ( $bilanRS['240']<>0 ) {
|
|
||||||
|
//Variation de stock (matières premières et approvisionnement)
|
||||||
|
if ( is_numeric($bilanRS['240']) && $bilanRS['240'] != 0 ) {
|
||||||
$bilanRN['BL'] = $bilanRS['050'];
|
$bilanRN['BL'] = $bilanRS['050'];
|
||||||
$bilanRN['BM'] = $bilanRS['052'];
|
$bilanRN['BM'] = $bilanRS['052'];
|
||||||
|
$bilanRN['BM1'] = $bilanRS['053'];
|
||||||
|
$bilanRN['BM2'] = $bilanRS['N05'];
|
||||||
|
unset($bilanRN['BN']);
|
||||||
|
unset($bilanRN['BO']);
|
||||||
|
unset($bilanRN['BO1']);
|
||||||
|
unset($bilanRN['BO2']);
|
||||||
} else {
|
} else {
|
||||||
|
unset($bilanRN['BL']);
|
||||||
|
unset($bilanRN['BM']);
|
||||||
|
unset($bilanRN['BM1']);
|
||||||
|
unset($bilanRN['BM2']);
|
||||||
$bilanRN['BN'] = $bilanRS['050'];
|
$bilanRN['BN'] = $bilanRS['050'];
|
||||||
$bilanRN['BO'] = $bilanRS['052'];
|
$bilanRN['BO'] = $bilanRS['052'];
|
||||||
|
$bilanRN['BO1'] = $bilanRS['053'];
|
||||||
|
$bilanRN['BO2'] = $bilanRS['N05'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $bilanRS['070']<>0 || $bilanRS['074']<>0 || $bilanRS['052']<>0 || $bilanRS['062']<>0 ) {
|
if ( is_numeric($bilanRS['070']) && $bilanRS['070'] != 0
|
||||||
|
|| is_numeric($bilanRS['074']) && $bilanRS['074'] != 0
|
||||||
|
|| is_numeric($bilanRS['052']) && $bilanRS['052'] != 0
|
||||||
|
|| is_numeric($bilanRS['062']) && $bilanRS['062'] != 0 ) {
|
||||||
$bilanRN['GC'] = $bilanRS['256'];
|
$bilanRN['GC'] = $bilanRS['256'];
|
||||||
} elseif ($bilanRS['070']==0 && $bilanRS['074']==0 && $bilanRS['052']==0 && $bilanRS['062']==0 && $bilanRS['254']<>0 ) {
|
} elseif ( $bilanRS['070'] == 0
|
||||||
|
&& $bilanRS['074'] == 0
|
||||||
|
&& $bilanRS['052'] == 0
|
||||||
|
&& $bilanRS['062'] == 0
|
||||||
|
&& intval($bilanRS['254']) > 0 ) {
|
||||||
$bilanRN['GD'] = $bilanRS['256'];
|
$bilanRN['GD'] = $bilanRS['256'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $bilanRS['071']<>0 || $bilanRS['075']<>0 || $bilanRS['053']<>0 || $bilanRS['063']<>0 ) {
|
if ( is_numeric($bilanRS['584']) && $bilanRS['584'] != 0 ) {
|
||||||
$bilanRN['GC1']=$bilanRS['N50'];
|
|
||||||
} elseif ($bilanRS['071']==0 || $bilanRS['075']==0 || $bilanRS['053']==0 || $bilanRS['063']==0 && $bilanRS['N49']<>0 ) {
|
|
||||||
$bilanRN['GD1']=$bilanRS['N50'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( $bilanRS['584']<>0 ) {
|
|
||||||
$bilanRN['HB'] = $bilanRS['584'];
|
$bilanRN['HB'] = $bilanRS['584'];
|
||||||
$bilanRN['HA'] = $bilanRS['290'] - $bilanRS['584'];
|
$bilanRN['HA'] = $bilanRS['290'] - $bilanRS['584'];
|
||||||
} else {
|
} else {
|
||||||
$bilanRN['HA'] = $bilanRS['290'];
|
$bilanRN['HA'] = $bilanRS['290'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $bilanRS['582']<>0 ) {
|
if ( is_numeric($bilanRS['582']) && $bilanRS['582'] != 0 ) {
|
||||||
$bilanRN['HF'] = $bilanRS['582'];
|
$bilanRN['HF'] = $bilanRS['582'];
|
||||||
$bilanRN['HE'] = $bilanRS['582'] - $bilanRS['300'];
|
$bilanRN['HE'] = $bilanRS['582'] - $bilanRS['300'];
|
||||||
} else {
|
} else {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -53,7 +53,7 @@ require_once 'Zend/Acl/Resource.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl
|
class Zend_Acl
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -41,7 +41,7 @@ require_once 'Zend/Acl/Resource/Interface.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Acl_Assert_Interface
|
interface Zend_Acl_Assert_Interface
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Exception.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl_Exception extends Zend_Exception
|
class Zend_Acl_Exception extends Zend_Exception
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Acl/Resource/Interface.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl_Resource implements Zend_Acl_Resource_Interface
|
class Zend_Acl_Resource implements Zend_Acl_Resource_Interface
|
||||||
@ -45,7 +45,6 @@ class Zend_Acl_Resource implements Zend_Acl_Resource_Interface
|
|||||||
* Sets the Resource identifier
|
* Sets the Resource identifier
|
||||||
*
|
*
|
||||||
* @param string $resourceId
|
* @param string $resourceId
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($resourceId)
|
public function __construct($resourceId)
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -23,7 +23,7 @@
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Acl_Resource_Interface
|
interface Zend_Acl_Resource_Interface
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Acl/Role/Interface.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl_Role implements Zend_Acl_Role_Interface
|
class Zend_Acl_Role implements Zend_Acl_Role_Interface
|
||||||
@ -45,7 +45,6 @@ class Zend_Acl_Role implements Zend_Acl_Role_Interface
|
|||||||
* Sets the Role identifier
|
* Sets the Role identifier
|
||||||
*
|
*
|
||||||
* @param string $roleId
|
* @param string $roleId
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($roleId)
|
public function __construct($roleId)
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -23,7 +23,7 @@
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Acl_Role_Interface
|
interface Zend_Acl_Role_Interface
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Acl/Role/Interface.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl_Role_Registry
|
class Zend_Acl_Role_Registry
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Acl/Exception.php';
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Acl
|
* @package Zend_Acl
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Acl_Role_Registry_Exception extends Zend_Acl_Exception
|
class Zend_Acl_Role_Registry_Exception extends Zend_Acl_Exception
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -36,7 +36,7 @@ require_once 'Zend/Xml/Security.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Adobe
|
* @subpackage Adobe
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Adobe_Auth extends Zend_Amf_Auth_Abstract
|
class Zend_Amf_Adobe_Auth extends Zend_Amf_Auth_Abstract
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -24,7 +24,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Adobe
|
* @subpackage Adobe
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Adobe_DbInspector
|
class Zend_Amf_Adobe_DbInspector
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Server/Reflection.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Adobe
|
* @subpackage Adobe
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Adobe_Introspector
|
class Zend_Amf_Adobe_Introspector
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -27,7 +27,7 @@ require_once 'Zend/Auth/Adapter/Interface.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Auth
|
* @subpackage Auth
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Amf_Auth_Abstract implements Zend_Auth_Adapter_Interface
|
abstract class Zend_Amf_Auth_Abstract implements Zend_Auth_Adapter_Interface
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -24,7 +24,7 @@
|
|||||||
* deserialization to detect the AMF marker and encoding types.
|
* deserialization to detect the AMF marker and encoding types.
|
||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
final class Zend_Amf_Constants
|
final class Zend_Amf_Constants
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@ require_once 'Zend/Exception.php';
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Exception extends Zend_Exception
|
class Zend_Amf_Exception extends Zend_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf0
|
* @subpackage Parse_Amf0
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -36,7 +36,7 @@ require_once 'Zend/Amf/Parse/Deserializer.php';
|
|||||||
* @todo Class could be implemented as Factory Class with each data type it's own class
|
* @todo Class could be implemented as Factory Class with each data type it's own class
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf0
|
* @subpackage Parse_Amf0
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Amf0_Deserializer extends Zend_Amf_Parse_Deserializer
|
class Zend_Amf_Parse_Amf0_Deserializer extends Zend_Amf_Parse_Deserializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf0
|
* @subpackage Parse_Amf0
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Amf/Parse/Serializer.php';
|
|||||||
* @uses Zend_Amf_Parse_Serializer
|
* @uses Zend_Amf_Parse_Serializer
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf0
|
* @subpackage Parse_Amf0
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Amf0_Serializer extends Zend_Amf_Parse_Serializer
|
class Zend_Amf_Parse_Amf0_Serializer extends Zend_Amf_Parse_Serializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf3
|
* @subpackage Parse_Amf3
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -37,7 +37,7 @@ require_once 'Zend/Amf/Parse/TypeLoader.php';
|
|||||||
* @todo Class could be implemented as Factory Class with each data type it's own class.
|
* @todo Class could be implemented as Factory Class with each data type it's own class.
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf3
|
* @subpackage Parse_Amf3
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Amf3_Deserializer extends Zend_Amf_Parse_Deserializer
|
class Zend_Amf_Parse_Amf3_Deserializer extends Zend_Amf_Parse_Deserializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf3
|
* @subpackage Parse_Amf3
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -35,7 +35,7 @@ require_once 'Zend/Amf/Parse/TypeLoader.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse_Amf3
|
* @subpackage Parse_Amf3
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Amf3_Serializer extends Zend_Amf_Parse_Serializer
|
class Zend_Amf_Parse_Amf3_Serializer extends Zend_Amf_Parse_Serializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@
|
|||||||
* @see http://opensource.adobe.com/svn/opensource/blazeds/trunk/modules/core/src/java/flex/messaging/io/amf/
|
* @see http://opensource.adobe.com/svn/opensource/blazeds/trunk/modules/core/src/java/flex/messaging/io/amf/
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Amf_Parse_Deserializer
|
abstract class Zend_Amf_Parse_Deserializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -31,7 +31,7 @@ require_once 'Zend/Amf/Util/BinaryStream.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_InputStream extends Zend_Amf_Util_BinaryStream
|
class Zend_Amf_Parse_InputStream extends Zend_Amf_Util_BinaryStream
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Amf/Util/BinaryStream.php';
|
|||||||
* @uses Zend_Amf_Util_BinaryStream
|
* @uses Zend_Amf_Util_BinaryStream
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_OutputStream extends Zend_Amf_Util_BinaryStream
|
class Zend_Amf_Parse_OutputStream extends Zend_Amf_Util_BinaryStream
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Resource_MysqlResult
|
class Zend_Amf_Parse_Resource_MysqlResult
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Resource_MysqliResult
|
class Zend_Amf_Parse_Resource_MysqliResult
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Parse_Resource_Stream
|
class Zend_Amf_Parse_Resource_Stream
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Amf_Parse_Serializer
|
abstract class Zend_Amf_Parse_Serializer
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -47,7 +47,7 @@ require_once 'Zend/Amf/Value/Messaging/RemotingMessage.php';
|
|||||||
* @todo PHP 5.3 can drastically change this class w/ namespace and the new call_user_func w/ namespace
|
* @todo PHP 5.3 can drastically change this class w/ namespace and the new call_user_func w/ namespace
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Parse
|
* @subpackage Parse
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
final class Zend_Amf_Parse_TypeLoader
|
final class Zend_Amf_Parse_TypeLoader
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -40,7 +40,7 @@ require_once 'Zend/Amf/Value/MessageBody.php';
|
|||||||
*
|
*
|
||||||
* @todo Currently not checking if the object needs to be Type Mapped to a server object.
|
* @todo Currently not checking if the object needs to be Type Mapped to a server object.
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Request
|
class Zend_Amf_Request
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Request
|
* @subpackage Request
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Amf/Request.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Request
|
* @subpackage Request
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Request_Http extends Zend_Amf_Request
|
class Zend_Amf_Request_Http extends Zend_Amf_Request
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Amf/Parse/Amf0/Serializer.php';
|
|||||||
* Handles converting the PHP object ready for response back into AMF
|
* Handles converting the PHP object ready for response back into AMF
|
||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Response
|
class Zend_Amf_Response
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Response
|
* @subpackage Response
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -28,7 +28,7 @@ require_once 'Zend/Amf/Response.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Response
|
* @subpackage Response
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Response_Http extends Zend_Amf_Response
|
class Zend_Amf_Response_Http extends Zend_Amf_Response
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -52,7 +52,7 @@ require_once 'Zend/Auth.php';
|
|||||||
* @todo Make the reflection methods cache and autoload.
|
* @todo Make the reflection methods cache and autoload.
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Server
|
* @subpackage Server
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Server implements Zend_Server_Interface
|
class Zend_Amf_Server implements Zend_Server_Interface
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Server
|
* @subpackage Server
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@ require_once 'Zend/Amf/Exception.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Server
|
* @subpackage Server
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Server_Exception extends Zend_Amf_Exception
|
class Zend_Amf_Server_Exception extends Zend_Amf_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Util
|
* @subpackage Util
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Util
|
* @subpackage Util
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Util_BinaryStream
|
class Zend_Amf_Util_BinaryStream
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_ByteArray
|
class Zend_Amf_Value_ByteArray
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_MessageBody
|
class Zend_Amf_Value_MessageBody
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_MessageHeader
|
class Zend_Amf_Value_MessageHeader
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_AbstractMessage
|
class Zend_Amf_Value_Messaging_AbstractMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Amf/Value/Messaging/AsyncMessage.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_AcknowledgeMessage extends Zend_Amf_Value_Messaging_AsyncMessage
|
class Zend_Amf_Value_Messaging_AcknowledgeMessage extends Zend_Amf_Value_Messaging_AsyncMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -27,7 +27,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_ArrayCollection extends ArrayObject
|
class Zend_Amf_Value_Messaging_ArrayCollection extends ArrayObject
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ require_once 'Zend/Amf/Value/Messaging/AbstractMessage.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_AsyncMessage extends Zend_Amf_Value_Messaging_AbstractMessage
|
class Zend_Amf_Value_Messaging_AsyncMessage extends Zend_Amf_Value_Messaging_AbstractMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -36,7 +36,7 @@ require_once 'Zend/Amf/Value/Messaging/AsyncMessage.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_CommandMessage extends Zend_Amf_Value_Messaging_AsyncMessage
|
class Zend_Amf_Value_Messaging_CommandMessage extends Zend_Amf_Value_Messaging_AsyncMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ require_once 'Zend/Amf/Value/Messaging/AcknowledgeMessage.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_ErrorMessage extends Zend_Amf_Value_Messaging_AcknowledgeMessage
|
class Zend_Amf_Value_Messaging_ErrorMessage extends Zend_Amf_Value_Messaging_AcknowledgeMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -31,7 +31,7 @@ require_once 'Zend/Amf/Value/Messaging/AbstractMessage.php';
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_Messaging_RemotingMessage extends Zend_Amf_Value_Messaging_AbstractMessage
|
class Zend_Amf_Value_Messaging_RemotingMessage extends Zend_Amf_Value_Messaging_AbstractMessage
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@
|
|||||||
*
|
*
|
||||||
* @package Zend_Amf
|
* @package Zend_Amf
|
||||||
* @subpackage Value
|
* @subpackage Value
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Amf_Value_TraitsInfo
|
class Zend_Amf_Value_TraitsInfo
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -22,7 +22,7 @@
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application
|
class Zend_Application
|
||||||
@ -86,7 +86,10 @@ class Zend_Application
|
|||||||
} elseif ($options instanceof Zend_Config) {
|
} elseif ($options instanceof Zend_Config) {
|
||||||
$options = $options->toArray();
|
$options = $options->toArray();
|
||||||
} elseif (!is_array($options)) {
|
} elseif (!is_array($options)) {
|
||||||
throw new Zend_Application_Exception('Invalid options provided; must be location of config file, a config object, or an array');
|
throw new Zend_Application_Exception(
|
||||||
|
'Invalid options provided; must be location of config file,'
|
||||||
|
. ' a config object, or an array'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->setOptions($options);
|
$this->setOptions($options);
|
||||||
@ -127,11 +130,15 @@ class Zend_Application
|
|||||||
if (is_array($options['config'])) {
|
if (is_array($options['config'])) {
|
||||||
$_options = array();
|
$_options = array();
|
||||||
foreach ($options['config'] as $tmp) {
|
foreach ($options['config'] as $tmp) {
|
||||||
$_options = $this->mergeOptions($_options, $this->_loadConfig($tmp));
|
$_options = $this->mergeOptions(
|
||||||
|
$_options, $this->_loadConfig($tmp)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
$options = $this->mergeOptions($_options, $options);
|
$options = $this->mergeOptions($_options, $options);
|
||||||
} else {
|
} else {
|
||||||
$options = $this->mergeOptions($this->_loadConfig($options['config']), $options);
|
$options = $this->mergeOptions(
|
||||||
|
$this->_loadConfig($options['config']), $options
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -171,7 +178,9 @@ class Zend_Application
|
|||||||
$this->setBootstrap($bootstrap);
|
$this->setBootstrap($bootstrap);
|
||||||
} elseif (is_array($bootstrap)) {
|
} elseif (is_array($bootstrap)) {
|
||||||
if (empty($bootstrap['path'])) {
|
if (empty($bootstrap['path'])) {
|
||||||
throw new Zend_Application_Exception('No bootstrap path provided');
|
throw new Zend_Application_Exception(
|
||||||
|
'No bootstrap path provided'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$path = $bootstrap['path'];
|
$path = $bootstrap['path'];
|
||||||
@ -183,7 +192,9 @@ class Zend_Application
|
|||||||
|
|
||||||
$this->setBootstrap($path, $class);
|
$this->setBootstrap($path, $class);
|
||||||
} else {
|
} else {
|
||||||
throw new Zend_Application_Exception('Invalid bootstrap information provided');
|
throw new Zend_Application_Exception(
|
||||||
|
'Invalid bootstrap information provided'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -319,13 +330,18 @@ class Zend_Application
|
|||||||
if (!class_exists($class, false)) {
|
if (!class_exists($class, false)) {
|
||||||
require_once $path;
|
require_once $path;
|
||||||
if (!class_exists($class, false)) {
|
if (!class_exists($class, false)) {
|
||||||
throw new Zend_Application_Exception('Bootstrap class not found');
|
throw new Zend_Application_Exception(
|
||||||
|
'Bootstrap class not found'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->_bootstrap = new $class($this);
|
$this->_bootstrap = new $class($this);
|
||||||
|
|
||||||
if (!$this->_bootstrap instanceof Zend_Application_Bootstrap_Bootstrapper) {
|
if (!$this->_bootstrap instanceof Zend_Application_Bootstrap_Bootstrapper) {
|
||||||
throw new Zend_Application_Exception('Bootstrap class does not implement Zend_Application_Bootstrap_Bootstrapper');
|
throw new Zend_Application_Exception(
|
||||||
|
'Bootstrap class does not implement'
|
||||||
|
. ' Zend_Application_Bootstrap_Bootstrapper'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
@ -403,13 +419,18 @@ class Zend_Application
|
|||||||
case 'inc':
|
case 'inc':
|
||||||
$config = include $file;
|
$config = include $file;
|
||||||
if (!is_array($config)) {
|
if (!is_array($config)) {
|
||||||
throw new Zend_Application_Exception('Invalid configuration file provided; PHP file does not return array value');
|
throw new Zend_Application_Exception(
|
||||||
|
'Invalid configuration file provided; PHP file does not'
|
||||||
|
. ' return array value'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return $config;
|
return $config;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new Zend_Application_Exception('Invalid configuration file provided; unknown config type');
|
throw new Zend_Application_Exception(
|
||||||
|
'Invalid configuration file provided; unknown config type'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $config->toArray();
|
return $config->toArray();
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -34,7 +34,7 @@ require_once 'Zend/Application/Bootstrap/BootstrapAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Bootstrap_Bootstrap
|
class Zend_Application_Bootstrap_Bootstrap
|
||||||
@ -64,9 +64,13 @@ class Zend_Application_Bootstrap_Bootstrap
|
|||||||
parent::__construct($application);
|
parent::__construct($application);
|
||||||
|
|
||||||
if ($application->hasOption('resourceloader')) {
|
if ($application->hasOption('resourceloader')) {
|
||||||
$this->setOptions(array(
|
$this->setOptions(
|
||||||
'resourceloader' => $application->getOption('resourceloader')
|
array(
|
||||||
));
|
'resourceloader' => $application->getOption(
|
||||||
|
'resourceloader'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
$this->getResourceLoader();
|
$this->getResourceLoader();
|
||||||
|
|
||||||
@ -128,10 +132,14 @@ class Zend_Application_Bootstrap_Bootstrap
|
|||||||
) {
|
) {
|
||||||
$r = new ReflectionClass($this);
|
$r = new ReflectionClass($this);
|
||||||
$path = $r->getFileName();
|
$path = $r->getFileName();
|
||||||
$this->setResourceLoader(new Zend_Application_Module_Autoloader(array(
|
$this->setResourceLoader(
|
||||||
|
new Zend_Application_Module_Autoloader(
|
||||||
|
array(
|
||||||
'namespace' => $namespace,
|
'namespace' => $namespace,
|
||||||
'basePath' => dirname($path),
|
'basePath' => dirname($path),
|
||||||
)));
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return $this->_resourceLoader;
|
return $this->_resourceLoader;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -38,7 +38,7 @@ require_once 'Zend/Application/Bootstrap/ResourceBootstrapper.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Application_Bootstrap_BootstrapAbstract
|
abstract class Zend_Application_Bootstrap_BootstrapAbstract
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Application_Bootstrap_Bootstrapper
|
interface Zend_Application_Bootstrap_Bootstrapper
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ require_once 'Zend/Application/Exception.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @uses Zend_Application_Exception
|
* @uses Zend_Application_Exception
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Bootstrap_Exception extends Zend_Application_Exception
|
class Zend_Application_Bootstrap_Exception extends Zend_Application_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Bootstrap
|
* @subpackage Bootstrap
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Application_Bootstrap_ResourceBootstrapper
|
interface Zend_Application_Bootstrap_ResourceBootstrapper
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ require_once 'Zend/Exception.php';
|
|||||||
* @uses Zend_Exception
|
* @uses Zend_Exception
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Exception extends Zend_Exception
|
class Zend_Application_Exception extends Zend_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Module
|
* @subpackage Module
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ require_once 'Zend/Loader/Autoloader/Resource.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Module
|
* @subpackage Module
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
|
class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
|
||||||
@ -39,7 +39,6 @@ class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
|
|||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param array|Zend_Config $options
|
* @param array|Zend_Config $options
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($options)
|
public function __construct($options)
|
||||||
{
|
{
|
||||||
@ -55,7 +54,8 @@ class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
|
|||||||
public function initDefaultResourceTypes()
|
public function initDefaultResourceTypes()
|
||||||
{
|
{
|
||||||
$basePath = $this->getBasePath();
|
$basePath = $this->getBasePath();
|
||||||
$this->addResourceTypes(array(
|
$this->addResourceTypes(
|
||||||
|
array(
|
||||||
'dbtable' => array(
|
'dbtable' => array(
|
||||||
'namespace' => 'Model_DbTable',
|
'namespace' => 'Model_DbTable',
|
||||||
'path' => 'models/DbTable',
|
'path' => 'models/DbTable',
|
||||||
@ -88,7 +88,8 @@ class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
|
|||||||
'namespace' => 'View_Filter',
|
'namespace' => 'View_Filter',
|
||||||
'path' => 'views/filters',
|
'path' => 'views/filters',
|
||||||
),
|
),
|
||||||
));
|
)
|
||||||
|
);
|
||||||
$this->setDefaultResourceType('model');
|
$this->setDefaultResourceType('model');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Module
|
* @subpackage Module
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Bootstrap/Bootstrap.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Module
|
* @subpackage Module
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Application_Module_Bootstrap
|
abstract class Zend_Application_Module_Bootstrap
|
||||||
@ -49,7 +49,6 @@ abstract class Zend_Application_Module_Bootstrap
|
|||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
|
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($application)
|
public function __construct($application)
|
||||||
{
|
{
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -28,7 +28,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Cachemanager extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Cachemanager extends Zend_Application_Resource_ResourceAbstract
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -88,7 +88,7 @@ class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbs
|
|||||||
/**
|
/**
|
||||||
* Set the adapter params
|
* Set the adapter params
|
||||||
*
|
*
|
||||||
* @param string $adapter
|
* @param array $params
|
||||||
* @return Zend_Application_Resource_Db
|
* @return Zend_Application_Resource_Db
|
||||||
*/
|
*/
|
||||||
public function setParams(array $params)
|
public function setParams(array $params)
|
||||||
@ -110,7 +110,7 @@ class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbs
|
|||||||
/**
|
/**
|
||||||
* Set whether to use this as default table adapter
|
* Set whether to use this as default table adapter
|
||||||
*
|
*
|
||||||
* @param boolean $defaultTableAdapter
|
* @param bool $isDefaultTableAdapter
|
||||||
* @return Zend_Application_Resource_Db
|
* @return Zend_Application_Resource_Db
|
||||||
*/
|
*/
|
||||||
public function setIsDefaultTableAdapter($isDefaultTableAdapter)
|
public function setIsDefaultTableAdapter($isDefaultTableAdapter)
|
||||||
@ -122,7 +122,7 @@ class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbs
|
|||||||
/**
|
/**
|
||||||
* Is this adapter the default table adapter?
|
* Is this adapter the default table adapter?
|
||||||
*
|
*
|
||||||
* @return void
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function isDefaultTableAdapter()
|
public function isDefaultTableAdapter()
|
||||||
{
|
{
|
||||||
@ -160,6 +160,8 @@ class Zend_Application_Resource_Db extends Zend_Application_Resource_ResourceAbs
|
|||||||
if (null !== ($db = $this->getDbAdapter())) {
|
if (null !== ($db = $this->getDbAdapter())) {
|
||||||
return $db;
|
return $db;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Dojo
|
class Zend_Application_Resource_Dojo
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Exception.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Exception extends Zend_Application_Exception
|
class Zend_Application_Resource_Exception extends Zend_Application_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Frontcontroller extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Frontcontroller extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -46,6 +46,7 @@ class Zend_Application_Resource_Frontcontroller extends Zend_Application_Resourc
|
|||||||
* Initialize Front Controller
|
* Initialize Front Controller
|
||||||
*
|
*
|
||||||
* @return Zend_Controller_Front
|
* @return Zend_Controller_Front
|
||||||
|
* @throws Zend_Application_Exception
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
@ -104,8 +105,7 @@ class Zend_Application_Resource_Frontcontroller extends Zend_Application_Resourc
|
|||||||
$stackIndex = null;
|
$stackIndex = null;
|
||||||
if (is_array($pluginClass)) {
|
if (is_array($pluginClass)) {
|
||||||
$pluginClass = array_change_key_case($pluginClass, CASE_LOWER);
|
$pluginClass = array_change_key_case($pluginClass, CASE_LOWER);
|
||||||
if(isset($pluginClass['class']))
|
if (isset($pluginClass['class'])) {
|
||||||
{
|
|
||||||
if (isset($pluginClass['stackindex'])) {
|
if (isset($pluginClass['stackindex'])) {
|
||||||
$stackIndex = $pluginClass['stackindex'];
|
$stackIndex = $pluginClass['stackindex'];
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Layout
|
class Zend_Application_Resource_Layout
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Locale
|
class Zend_Application_Resource_Locale
|
||||||
@ -68,9 +68,9 @@ class Zend_Application_Resource_Locale
|
|||||||
|
|
||||||
if (!isset($options['default'])) {
|
if (!isset($options['default'])) {
|
||||||
$this->_locale = new Zend_Locale();
|
$this->_locale = new Zend_Locale();
|
||||||
} elseif(!isset($options['force']) ||
|
} elseif (!isset($options['force'])
|
||||||
(bool) $options['force'] == false)
|
|| (bool)$options['force'] == false
|
||||||
{
|
) {
|
||||||
// Don't force any locale, just go for auto detection
|
// Don't force any locale, just go for auto detection
|
||||||
Zend_Locale::setDefault($options['default']);
|
Zend_Locale::setDefault($options['default']);
|
||||||
$this->_locale = new Zend_Locale();
|
$this->_locale = new Zend_Locale();
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Log
|
class Zend_Application_Resource_Log
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -43,7 +43,8 @@ class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceA
|
|||||||
*/
|
*/
|
||||||
protected $_transport;
|
protected $_transport;
|
||||||
|
|
||||||
public function init() {
|
public function init()
|
||||||
|
{
|
||||||
return $this->getMail();
|
return $this->getMail();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,16 +61,16 @@ class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceA
|
|||||||
}
|
}
|
||||||
$this->setOptions($options);
|
$this->setOptions($options);
|
||||||
|
|
||||||
if(isset($options['transport']) &&
|
if (isset($options['transport'])
|
||||||
!is_numeric($options['transport']))
|
&& !is_numeric($options['transport'])
|
||||||
{
|
) {
|
||||||
$this->_transport = $this->_setupTransport($options['transport']);
|
$this->_transport = $this->_setupTransport($options['transport']);
|
||||||
if(!isset($options['transport']['register']) ||
|
if (!isset($options['transport']['register'])
|
||||||
$options['transport']['register'] == '1' ||
|
|| $options['transport']['register'] == '1'
|
||||||
(isset($options['transport']['register']) &&
|
|| (isset($options['transport']['register'])
|
||||||
!is_numeric($options['transport']['register']) &&
|
&& !is_numeric($options['transport']['register'])
|
||||||
(bool) $options['transport']['register'] == true))
|
&& (bool)$options['transport']['register'] == true)
|
||||||
{
|
) {
|
||||||
Zend_Mail::setDefaultTransport($this->_transport);
|
Zend_Mail::setDefaultTransport($this->_transport);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -81,19 +82,23 @@ class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceA
|
|||||||
return $this->_transport;
|
return $this->_transport;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function _setDefaults($type) {
|
protected function _setDefaults($type)
|
||||||
|
{
|
||||||
$key = strtolower('default' . $type);
|
$key = strtolower('default' . $type);
|
||||||
$options = $this->getOptions();
|
$options = $this->getOptions();
|
||||||
|
|
||||||
if(isset($options[$key]['email']) &&
|
if (isset($options[$key]['email'])
|
||||||
!is_numeric($options[$key]['email']))
|
&& !is_numeric($options[$key]['email'])
|
||||||
{
|
) {
|
||||||
$method = array('Zend_Mail', 'setDefault' . ucfirst($type));
|
$method = array('Zend_Mail', 'setDefault' . ucfirst($type));
|
||||||
if(isset($options[$key]['name']) &&
|
if (isset($options[$key]['name'])
|
||||||
!is_numeric($options[$key]['name']))
|
&& !is_numeric(
|
||||||
{
|
$options[$key]['name']
|
||||||
call_user_func($method, $options[$key]['email'],
|
)
|
||||||
$options[$key]['name']);
|
) {
|
||||||
|
call_user_func(
|
||||||
|
$method, $options[$key]['email'], $options[$key]['name']
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
call_user_func($method, $options[$key]['email']);
|
call_user_func($method, $options[$key]['email']);
|
||||||
}
|
}
|
||||||
@ -107,12 +112,10 @@ class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceA
|
|||||||
}
|
}
|
||||||
|
|
||||||
$transportName = $options['type'];
|
$transportName = $options['type'];
|
||||||
if(!Zend_Loader_Autoloader::autoload($transportName))
|
if (!Zend_Loader_Autoloader::autoload($transportName)) {
|
||||||
{
|
|
||||||
$transportName = ucfirst(strtolower($transportName));
|
$transportName = ucfirst(strtolower($transportName));
|
||||||
|
|
||||||
if(!Zend_Loader_Autoloader::autoload($transportName))
|
if (!Zend_Loader_Autoloader::autoload($transportName)) {
|
||||||
{
|
|
||||||
$transportName = 'Zend_Mail_Transport_' . $transportName;
|
$transportName = 'Zend_Mail_Transport_' . $transportName;
|
||||||
if (!Zend_Loader_Autoloader::autoload($transportName)) {
|
if (!Zend_Loader_Autoloader::autoload($transportName)) {
|
||||||
throw new Zend_Application_Resource_Exception(
|
throw new Zend_Application_Resource_Exception(
|
||||||
@ -131,7 +134,8 @@ class Zend_Application_Resource_Mail extends Zend_Application_Resource_ResourceA
|
|||||||
if (!isset($options['host'])) {
|
if (!isset($options['host'])) {
|
||||||
throw new Zend_Application_Resource_Exception(
|
throw new Zend_Application_Resource_Exception(
|
||||||
'A host is necessary for smtp transport,'
|
'A host is necessary for smtp transport,'
|
||||||
.' but none was given');
|
. ' but none was given'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$transport = new $transportName($options['host'], $options);
|
$transport = new $transportName($options['host'], $options);
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Modules extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Modules extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -46,7 +46,6 @@ class Zend_Application_Resource_Modules extends Zend_Application_Resource_Resour
|
|||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param mixed $options
|
* @param mixed $options
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($options = null)
|
public function __construct($options = null)
|
||||||
{
|
{
|
||||||
@ -80,16 +79,20 @@ class Zend_Application_Resource_Modules extends Zend_Application_Resource_Resour
|
|||||||
if (($default != $module)
|
if (($default != $module)
|
||||||
&& !class_exists($bootstrapClass, false)
|
&& !class_exists($bootstrapClass, false)
|
||||||
) {
|
) {
|
||||||
throw new Zend_Application_Resource_Exception(sprintf(
|
throw new Zend_Application_Resource_Exception(
|
||||||
|
sprintf(
|
||||||
$eMsgTpl, $module, $bootstrapClass
|
$eMsgTpl, $module, $bootstrapClass
|
||||||
));
|
)
|
||||||
|
);
|
||||||
} elseif ($default == $module) {
|
} elseif ($default == $module) {
|
||||||
if (!class_exists($bootstrapClass, false)) {
|
if (!class_exists($bootstrapClass, false)) {
|
||||||
$bootstrapClass = 'Bootstrap';
|
$bootstrapClass = 'Bootstrap';
|
||||||
if (!class_exists($bootstrapClass, false)) {
|
if (!class_exists($bootstrapClass, false)) {
|
||||||
throw new Zend_Application_Resource_Exception(sprintf(
|
throw new Zend_Application_Resource_Exception(
|
||||||
|
sprintf(
|
||||||
$eMsgTpl, $module, $bootstrapClass
|
$eMsgTpl, $module, $bootstrapClass
|
||||||
));
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -51,7 +51,7 @@ require_once 'Zend/Db/Table.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Multidb extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Multidb extends Zend_Application_Resource_ResourceAbstract
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @author Dolf Schimmel
|
* @author Dolf Schimmel
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
@ -58,7 +58,9 @@ class Zend_Application_Resource_Navigation
|
|||||||
$options = $this->getOptions();
|
$options = $this->getOptions();
|
||||||
|
|
||||||
if (isset($options['defaultPageType'])) {
|
if (isset($options['defaultPageType'])) {
|
||||||
Zend_Navigation_Page::setDefaultPageType($options['defaultPageType']);
|
Zend_Navigation_Page::setDefaultPageType(
|
||||||
|
$options['defaultPageType']
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$pages = isset($options['pages']) ? $options['pages'] : array();
|
$pages = isset($options['pages']) ? $options['pages'] : array();
|
||||||
@ -93,9 +95,10 @@ class Zend_Application_Resource_Navigation
|
|||||||
protected function _storeRegistry()
|
protected function _storeRegistry()
|
||||||
{
|
{
|
||||||
$options = $this->getOptions();
|
$options = $this->getOptions();
|
||||||
if(isset($options['storage']['registry']['key']) &&
|
// see ZF-7461
|
||||||
!is_numeric($options['storage']['registry']['key'])) // see ZF-7461
|
if (isset($options['storage']['registry']['key'])
|
||||||
{
|
&& !is_numeric($options['storage']['registry']['key'])
|
||||||
|
) {
|
||||||
$key = $options['storage']['registry']['key'];
|
$key = $options['storage']['registry']['key'];
|
||||||
} else {
|
} else {
|
||||||
$key = self::DEFAULT_REGISTRY_KEY;
|
$key = self::DEFAULT_REGISTRY_KEY;
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
interface Zend_Application_Resource_Resource
|
interface Zend_Application_Resource_Resource
|
||||||
@ -37,7 +37,6 @@ interface Zend_Application_Resource_Resource
|
|||||||
* Must take an optional single argument, $options.
|
* Must take an optional single argument, $options.
|
||||||
*
|
*
|
||||||
* @param mixed $options
|
* @param mixed $options
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($options = null);
|
public function __construct($options = null);
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@ require_once 'Zend/Application/Resource/Resource.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
abstract class Zend_Application_Resource_ResourceAbstract implements Zend_Application_Resource_Resource
|
abstract class Zend_Application_Resource_ResourceAbstract implements Zend_Application_Resource_Resource
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Router
|
class Zend_Application_Resource_Router
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Session extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Session extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -62,6 +62,7 @@ class Zend_Application_Resource_Session extends Zend_Application_Resource_Resour
|
|||||||
* Get session save handler
|
* Get session save handler
|
||||||
*
|
*
|
||||||
* @return Zend_Session_SaveHandler_Interface
|
* @return Zend_Session_SaveHandler_Interface
|
||||||
|
* @throws Zend_Application_Resource_Exception
|
||||||
*/
|
*/
|
||||||
public function getSaveHandler()
|
public function getSaveHandler()
|
||||||
{
|
{
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_Translate extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_Translate extends Zend_Application_Resource_ResourceAbstract
|
||||||
@ -122,9 +122,11 @@ class Zend_Application_Resource_Translate extends Zend_Application_Resource_Reso
|
|||||||
$translate = Zend_Registry::get($key);
|
$translate = Zend_Registry::get($key);
|
||||||
if (!$translate instanceof Zend_Translate) {
|
if (!$translate instanceof Zend_Translate) {
|
||||||
require_once 'Zend/Application/Resource/Exception.php';
|
require_once 'Zend/Application/Resource/Exception.php';
|
||||||
throw new Zend_Application_Resource_Exception($key
|
throw new Zend_Application_Resource_Exception(
|
||||||
|
$key
|
||||||
. ' already registered in registry but is '
|
. ' already registered in registry but is '
|
||||||
. 'no instance of Zend_Translate');
|
. 'no instance of Zend_Translate'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$translate->addTranslation($options);
|
$translate->addTranslation($options);
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -23,7 +23,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_UserAgent extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_UserAgent extends Zend_Application_Resource_ResourceAbstract
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Application/Resource/ResourceAbstract.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Application
|
* @package Zend_Application
|
||||||
* @subpackage Resource
|
* @subpackage Resource
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Application_Resource_View extends Zend_Application_Resource_ResourceAbstract
|
class Zend_Application_Resource_View extends Zend_Application_Resource_ResourceAbstract
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -23,7 +23,7 @@
|
|||||||
/**
|
/**
|
||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Auth
|
class Zend_Auth
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -41,7 +41,7 @@ require_once 'Zend/Auth/Result.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Auth_Adapter_DbTable implements Zend_Auth_Adapter_Interface
|
class Zend_Auth_Adapter_DbTable implements Zend_Auth_Adapter_Interface
|
||||||
@ -132,7 +132,6 @@ class Zend_Auth_Adapter_DbTable implements Zend_Auth_Adapter_Interface
|
|||||||
* @param string $identityColumn
|
* @param string $identityColumn
|
||||||
* @param string $credentialColumn
|
* @param string $credentialColumn
|
||||||
* @param string $credentialTreatment
|
* @param string $credentialTreatment
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct(Zend_Db_Adapter_Abstract $zendDb = null, $tableName = null, $identityColumn = null,
|
public function __construct(Zend_Db_Adapter_Abstract $zendDb = null, $tableName = null, $identityColumn = null,
|
||||||
$credentialColumn = null, $credentialTreatment = null)
|
$credentialColumn = null, $credentialTreatment = null)
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -31,7 +31,7 @@ require_once 'Zend/Auth/Adapter/Interface.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Auth_Adapter_Digest implements Zend_Auth_Adapter_Interface
|
class Zend_Auth_Adapter_Digest implements Zend_Auth_Adapter_Interface
|
||||||
@ -71,7 +71,6 @@ class Zend_Auth_Adapter_Digest implements Zend_Auth_Adapter_Interface
|
|||||||
* @param mixed $realm
|
* @param mixed $realm
|
||||||
* @param mixed $username
|
* @param mixed $username
|
||||||
* @param mixed $password
|
* @param mixed $password
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct($filename = null, $realm = null, $username = null, $password = null)
|
public function __construct($filename = null, $realm = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -31,7 +31,7 @@ require_once 'Zend/Auth/Exception.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Adapter
|
* @subpackage Adapter
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Auth_Adapter_Exception extends Zend_Auth_Exception
|
class Zend_Auth_Adapter_Exception extends Zend_Auth_Exception
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Zend_Auth_Adapter_Http
|
* @subpackage Zend_Auth_Adapter_Http
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -35,7 +35,7 @@ require_once 'Zend/Auth/Adapter/Interface.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Zend_Auth_Adapter_Http
|
* @subpackage Zend_Auth_Adapter_Http
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @todo Support auth-int
|
* @todo Support auth-int
|
||||||
* @todo Track nonces, nonce-count, opaque for replay protection and stale support
|
* @todo Track nonces, nonce-count, opaque for replay protection and stale support
|
||||||
@ -163,7 +163,6 @@ class Zend_Auth_Adapter_Http implements Zend_Auth_Adapter_Interface
|
|||||||
* 'alogrithm' => <string> See $_supportedAlgos. Default: MD5
|
* 'alogrithm' => <string> See $_supportedAlgos. Default: MD5
|
||||||
* 'proxy_auth' => <bool> Whether to do authentication as a Proxy
|
* 'proxy_auth' => <bool> Whether to do authentication as a Proxy
|
||||||
* @throws Zend_Auth_Adapter_Exception
|
* @throws Zend_Auth_Adapter_Exception
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct(array $config)
|
public function __construct(array $config)
|
||||||
{
|
{
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Zend_Auth_Adapter_Http
|
* @subpackage Zend_Auth_Adapter_Http
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@ require_once 'Zend/Auth/Exception.php';
|
|||||||
* @category Zend
|
* @category Zend
|
||||||
* @package Zend_Auth
|
* @package Zend_Auth
|
||||||
* @subpackage Zend_Auth_Adapter_Http
|
* @subpackage Zend_Auth_Adapter_Http
|
||||||
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
||||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||||
*/
|
*/
|
||||||
class Zend_Auth_Adapter_Http_Resolver_Exception extends Zend_Auth_Exception
|
class Zend_Auth_Adapter_Http_Resolver_Exception extends Zend_Auth_Exception
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user