Jump to content

Création d'un nouveau tablau de catégories dans la BO


Recommended Posts

Bonjour,
Voila presque tout est dans le titre je voudrait pouvoir créer un nouveau tableau avec mes catégories qui serait cliquables et qui afficherait dans un tableau la liste des sous catégories qui lui aussi serait cliquables etc etc...

Je ne n'arrive pas a utiliser les bonnes fonctions je m'y perd avec toute les classes, les chemin d'accès, je sais bien qu'il doit y avoir une solution très simple mais je ne la voit pas

<?php
class AdminTaux2 extends AdminTab
{
   private $_taux;
   protected $maxImageSize = 300000;

   public function __construct()
   {
       global $cookie;

       $this->table = 'taux';
   $this->className = 'Taux';
   $this->lang = false;
   $this->edit = true;
   $this->view = true;
   $this->delete = true;

       $this->fieldsDisplay = array(
       'id_category' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 30),
       'name' => array('title' => $this->l('Name'), 'width' => 100, 'callback' => 'hideCategoryPosition'),
       'description' => array('title' => $this->l('Description'), 'width' => 480, 'maxlength' => 90, 'orderby' => false),
       'physical_products_quantity' => array('title' => $this->l('In stock Products'), 'align' => 'center', 'width' => 50),
       'active' => array('title' => $this->l('Displayed'), 'active' => 'status', 'align' => 'center', 'type' => 'bool', 'orderby' => false));

       $this->_taux = AdminCatalog::getCurrentCategory();
       $this->_filter = 'AND `id_parent` = '.intval($this->_taux->id);


       $children = Category::getChildren($this->_taux->id, $cookie->id_lang);
       foreach ($children as &$child)
       {
           $tmp_list = $this->_taux->id.',';
           $obj = new Taux($child['id_category']);
           $parents = $obj->getParentsCategories();
           foreach ($parents as $parent)
               $tmp_list .= $parent['id_category'].',';
           $child['parent_id_list'] =  rtrim($tmp_list, ',');
       }
   }
}

?>



Voici ce que j'ai fait pour le moment mais quand j'affiche la page j'ai sa :

Warning: require_once(C:\wamp\www\imprimerie360\config/../classes/AdminCatalog.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\imprimerie360\config\config.inc.php on line 15

Fatal error: require_once() [function.require]: Failed opening required 'C:\wamp\www\imprimerie360\config/../classes/AdminCatalog.php' (include_path='.;C:\php5\pear') in C:\wamp\www\imprimerie360\config\config.inc.php on line 15

A savoir que ma ligne 15 c'est : class AdminTaux2 extends AdminTab

Je ne souhaite pas la solution complete a mon probleme j'aimerai des indications et de l'aide pour comprendre mon probleme et le resoudre comme un grand ^^

Sur ce bonne journée et merci a ceux qui m'aideront ou essayerons de m'aider ;)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...