Source for file config.php

Documentation is available at config.php

  1. <?php
  2.     /**
  3.      * config.php
  4.      * 
  5.      * Configurações referentes ao módulo grupo
  6.      *
  7.      * @copyright 2008 Soomp
  8.      * @author Marcio Merlone <mmerlone@gmail.com>
  9.      * @version 1.0
  10.      * @since 11/05/2007
  11.      * @package Soomp
  12.      */
  13.     /* $Id: config.php,v 1.1 2007/05/24 20:23:44 mmerlone Exp $ */
  14.  
  15.     class grupo_conf{
  16.         /**
  17.          * @var boolean $active define se o módulo está disponível para os usuários ou não.
  18.          */
  19.         public $active = true;
  20.     
  21.         /**
  22.          * @var string $description Breve descrição do módulo
  23.          */
  24.         public $description = 'Gerenciamento de grupos';
  25.     
  26.         /**
  27.          * @var array $actions define os $_GET['a'] existentes pelo módulo.
  28.          */
  29.         public $actions = array('lista'        => array(1,  array('id' => 0'value' => 'Listagem dos grupos')),
  30.                                 'add'        => array(2,  array('id' => 0'value' => 'Adicionar novo grupo')),
  31.                                  'del'        => array(4,  array('id' => 0'value' => 'Remover um grupo')),
  32.                                  'delmulti'    => array(8,  array('id' => 0'value' => 'Remover vários grupos em operação única')),
  33.                                  'edit'        => array(16array('id' => 0'value' => 'Editar um grupo existente')),
  34.                                  'save'        => array(32array('id' => 0'value' => 'Gravar os dados de um grupo novo ou existente'))
  35.                                 );
  36.  
  37.     }
  38. ?>

Documentation generated on Sun, 09 Mar 2008 23:50:59 -0300 by phpDocumentor 1.4.0

SourceForge.net Logo Support This Project