//added dashboard controller

This commit is contained in:
Vincent Augagneur
2013-08-28 10:04:28 +02:00
parent 967fc98693
commit 0019426e81
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
/*
* 2007-2013 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2013 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
class AdminDashboardControllerCore extends AdminController
{
public function __construct()
{
$this->display = 'view';
parent::__construct();
}
}

View File

@@ -98,5 +98,6 @@
<access id="access_1_99" id_profile="SuperAdmin" id_tab="Stock_cover" view="1" add="1" edit="1" delete="1"/>
<access id="access_1_100" id_profile="SuperAdmin" id_tab="Supply_orders" view="1" add="1" edit="1" delete="1"/>
<access id="access_1_101" id_profile="SuperAdmin" id_tab="Configuration" view="1" add="1" edit="1" delete="1"/>
<access id="access_1_102" id_profile="SuperAdmin" id_tab="Dashboard" view="1" add="1" edit="1" delete="1"/>
</entities>
</entity_access>

View File

@@ -9,6 +9,9 @@
<tab id="Home" id_parent="-1" active="1">
<class_name>AdminHome</class_name>
</tab>
<tab id="Dashboard" id_parent="-1" active="1">
<class_name>AdminDashboard</class_name>
</tab>
<tab id="CMS_Pages" id_parent="-1" active="1">
<class_name>AdminCms</class_name>
</tab>

View File

@@ -1,6 +1,7 @@
<?xml version="1.0"?>
<entity_tab>
<tab id="Addresses" name="Adresses"/>
<tab id="Dashboard" name="Dasboard"/>
<tab id="Administration" name="Administration"/>
<tab id="Advanced_Parameters" name="Param&#xE8;tres avanc&#xE9;s"/>
<tab id="Attachments" name="Documents joints"/>