Petit modification
This commit is contained in:
parent
df51ce2355
commit
55845ab56e
@ -1,8 +1,6 @@
|
||||
<?php
|
||||
|
||||
class DashboardController extends Libs_Controller
|
||||
{
|
||||
|
||||
public function init()
|
||||
{
|
||||
$this->view->headLink()->appendStylesheet('/themes/default/styles/dashboard.css', 'all');
|
||||
|
@ -24,8 +24,8 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
$this->_helper->layout()->disableLayout();
|
||||
$this->_helper->viewRenderer->setNoRender(true);
|
||||
|
||||
$config = new Zend_Config_Ini(APPLICATION_PATH . '/configs/configuration.ini', 'path');
|
||||
$path = realpath($config->data).'/clients';
|
||||
$config = Zend_Registrey::get('configuration');
|
||||
$path = realpath($config->path->data).'/clients';
|
||||
if(!file_exists($path)) mkdir($path);
|
||||
|
||||
if ( isset($_FILES) && count($_FILES)==1 ){
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
<div class="chemin">
|
||||
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>''))?>">Tableau de bord</a> >
|
||||
Enrichissement fichier
|
||||
Enrichissement de fichier
|
||||
</div>
|
||||
|
||||
<a href="<?=$this->url(array('controller'=>'enrichissement', 'action'=>'fileform'))?>">Envoyer votre fichier pour enrichissement</a>
|
||||
|
@ -7,7 +7,7 @@
|
||||
<div id="menu">
|
||||
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'ciblages'))?>">Historique de vos ciblages</a> -
|
||||
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'configuration'))?>">Préférences de l'application</a> -
|
||||
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'exports'))?>">Enrichissement fichier</a>
|
||||
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'exports'))?>">Enrichissement de fichier</a>
|
||||
</div>
|
||||
|
||||
<div id="rechercheCiblage">
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#dashboard table {
|
||||
border-collapse: separate;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#dashboard tr th , #dashboard tr td {
|
||||
@ -41,7 +42,6 @@
|
||||
}
|
||||
|
||||
#dashboard tbody tr:hover {
|
||||
/*background-image:url('/themes/default/images/stripe-hover.png');*/
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user