Skip to content
Snippets Groups Projects
Select Git revision
  • d915524d0e36affc6f5d9bbf6ef7f94db0a6f0ef
  • develop default
  • issue-525
  • topics/add-contribution-info
  • master
  • master-no-logins
  • issue-424
  • svn-trunk
  • svn-staging
  • svn-testing
  • 7.6.1
  • 7.6
  • 7.5.1
  • 7.5
  • 7.4
  • 7.3.1
  • 7.3
  • 7.2
  • 7.1
  • 2012-04-18
  • 2012-04-03
  • 2012-04-02
  • 2012-03-01
  • 2012-02-07
  • 20120207
  • 2012-01-13
  • 2012-01-12
  • 2011-12-16
  • 2011-12-05
  • 2011-11-17
30 results

progress.js

Blame
  • Forked from UNL Information Services / UNL-CMS
    Source project has a limited visibility.
    modFicheinter.class.php 3.68 KiB
    <?php
    /* Copyright (C) 2003      Rodolphe Quiedeville <rodolphe@quiedeville.org>
     * Copyright (C) 2004-2005 Laurent Destailleur  <eldy@users.sourceforge.net>
     * Copyright (C) 2004      Sebastien Di Cintio  <sdicintio@ressource-toi.org>
     * Copyright (C) 2004      Benoit Mortier       <benoit.mortier@opensides.be>
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 2 of the License, or
     * (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     *
     * $Id$
     * $Source$
     *
     */
    
    /**
            \defgroup   ficheinter     Module fiche interventions
            \brief      Module pour gérer la tenue de fiches d'interventions
    */
    
    /**
            \file       htdocs/includes/modules/modFicheinter.class.php
            \ingroup    ficheinter
            \brief      Fichier de description et activation du module Ficheinter
    */
    
    include_once "DolibarrModules.class.php";
    
    /**
            \class      modFicheinter
    		\brief      Classe de description et activation du module Ficheinter
    */
    
    class modFicheinter  extends DolibarrModules
    {
    
       /**
        *   \brief      Constructeur. Definit les noms, constantes et boites
        *   \param      DB      handler d'accès base
        */
      function modFicheinter($DB)
      {
        $this->db = $DB ;
        $this->numero = 70 ;
        
        $this->family = "crm";
        $this->name = "Fiche d'intervention";
        $this->description = "Gestion des fiches d'intervention";
    
        $this->revision = explode(" ","$Revision$");
        $this->version = $this->revision[1];
    
        $this->const_name = "MAIN_MODULE_FICHEINTER";
        $this->const_config = MAIN_MODULE_FICHEINTER;
        $this->special = 0;
        $this->picto = "intervention";
        
        // Dir
        $this->dirs = array();