Petit modification

This commit is contained in:
Michael RICOIS 2012-02-15 12:56:55 +00:00
parent df51ce2355
commit 55845ab56e
5 changed files with 5 additions and 7 deletions

View File

@ -1,8 +1,6 @@
<?php
class DashboardController extends Libs_Controller
{
public function init()
{
$this->view->headLink()->appendStylesheet('/themes/default/styles/dashboard.css', 'all');

View File

@ -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 ){

View File

@ -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>

View File

@ -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">

View File

@ -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;
}