Changeset 7077


Ignore:
Timestamp:
08/21/12 11:42:45 (12 years ago)
Author:
marcieli
Message:

Ticket #2966 - Inseridos comentários de cabeçalho de arquivos e classes.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoCalendar/setup/default_records.inc.php

    r6996 r7077  
    11<?php 
    2  
     2        /** 
     3        * 
     4        * Copyright (C) 2011 Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     5        * 
     6        * This program is free software; you can redistribute it and/or modify 
     7        * it under the terms of the GNU General Public License as published by 
     8        * the Free Software Foundation; either version 3 of the License, or 
     9        * any later version. 
     10        * 
     11        * This program is distributed in the hope that it will be useful, but WITHOUT 
     12        * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     13        * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
     14        * details. 
     15        * 
     16        * You should have received a copy of the GNU General Public License 
     17        * along with this program; if not, write to the Free Software Foundation, 
     18        * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA 
     19        * 
     20        * You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, 
     21        * 6731, PTI, Edifício do Saber, 3º floor, room 306, Foz do Iguaçu - PR - Brasil 
     22        * or at e-mail address prognus@prognus.com.br. 
     23        * 
     24        * Neste arquivo são inseridos os valores padrões nas tabelas do módulo expressoCalendar.  
     25        * 
     26        * @license    http://www.gnu.org/copyleft/gpl.html GPL 
     27        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     28        * @version    1.0 
     29        * @sponsor    Caixa Econômica Federal 
     30        * @since      Arquivo disponibilizado na versão Expresso 2.4.0 
     31        */ 
     32         
    333                //Problemas com cascade na forenkey 
    434                //calendar_object 
  • trunk/prototype/modules/calendar/constants.php

    r7028 r7077  
    11<?php 
     2 
     3        /** 
     4        * 
     5        * Copyright (C) 2011 Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     6        * 
     7        * This program is free software; you can redistribute it and/or modify 
     8        * it under the terms of the GNU General Public License as published by 
     9        * the Free Software Foundation; either version 3 of the License, or 
     10        * any later version. 
     11        * 
     12        * This program is distributed in the hope that it will be useful, but WITHOUT 
     13        * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     14        * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
     15        * details. 
     16        * 
     17        * You should have received a copy of the GNU General Public License 
     18        * along with this program; if not, write to the Free Software Foundation, 
     19        * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA 
     20        * 
     21        * You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, 
     22        * 6731, PTI, Edifício do Saber, 3º floor, room 306, Foz do Iguaçu - PR - Brasil 
     23        * or at e-mail address prognus@prognus.com.br. 
     24        * 
     25        * Neste arquivo são definidas as contantes a serem utilizadas pelo módulo ExpressoCalendar.  
     26        * 
     27        * @license    http://www.gnu.org/copyleft/gpl.html GPL 
     28        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     29        * @version    1.0 
     30        * @sponsor    Caixa Econômica Federal 
     31        * @since      Arquivo disponibilizado na versão Expresso 2.4.0 
     32        */ 
    233 
    334define('EVENT_ID', 1); 
  • trunk/prototype/modules/calendar/export.php

    r6996 r7077  
    11<?php 
     2 
     3        /** 
     4        * 
     5        * Copyright (C) 2011 Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     6        * 
     7        * This program is free software; you can redistribute it and/or modify 
     8        * it under the terms of the GNU General Public License as published by 
     9        * the Free Software Foundation; either version 3 of the License, or 
     10        * any later version. 
     11        * 
     12        * This program is distributed in the hope that it will be useful, but WITHOUT 
     13        * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     14        * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
     15        * details. 
     16        * 
     17        * You should have received a copy of the GNU General Public License 
     18        * along with this program; if not, write to the Free Software Foundation, 
     19        * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA 
     20        * 
     21        * You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, 
     22        * 6731, PTI, Edifício do Saber, 3º floor, room 306, Foz do Iguaçu - PR - Brasil 
     23        * or at e-mail address prognus@prognus.com.br. 
     24        * 
     25        * Neste arquivo são ser implementadas regras de negócio para a exportação de eventos e tarefas do ExpressoCalendar.  
     26        * 
     27        * @license    http://www.gnu.org/copyleft/gpl.html GPL 
     28        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     29        * @version    1.0 
     30        * @sponsor    Caixa Econômica Federal 
     31        * @since      Arquivo disponibilizado na versão Expresso 2.4.0 
     32        */ 
     33 
    234require_once '../../api/controller.php'; 
    335$params = $_GET; 
  • trunk/prototype/modules/calendar/interceptors/DBMapping.php

    r7041 r7077  
    11<?php 
    2  
     2        /** 
     3        * 
     4        * Copyright (C) 2011 Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     5        * 
     6        * This program is free software; you can redistribute it and/or modify 
     7        * it under the terms of the GNU General Public License as published by 
     8        * the Free Software Foundation; either version 3 of the License, or 
     9        * any later version. 
     10        * 
     11        * This program is distributed in the hope that it will be useful, but WITHOUT 
     12        * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     13        * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
     14        * details. 
     15        * 
     16        * You should have received a copy of the GNU General Public License 
     17        * along with this program; if not, write to the Free Software Foundation, 
     18        * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA 
     19        * 
     20        * You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, 
     21        * 6731, PTI, Edifício do Saber, 3º floor, room 306, Foz do Iguaçu - PR - Brasil 
     22        * or at e-mail address prognus@prognus.com.br. 
     23        * 
     24        * Neste arquivo são ser implementadas regras de negócio para consistir e normalizar os dados correspondentes às operações do usuário para o ExpressoCalendar.  
     25        * 
     26        * @license    http://www.gnu.org/copyleft/gpl.html GPL 
     27        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     28        * @version    1.0 
     29        * @sponsor    Caixa Econômica Federal 
     30        * @since      Arquivo disponibilizado na versão Expresso 2.4.0 
     31        */ 
     32         
     33         
    334//Definindo Constantes 
    435require_once ROOTPATH . '/modules/calendar/constants.php'; 
     
    738 
    839use prototype\api\Config as Config; 
     40 
     41/** 
     42* Classe com implementações das regras de negócio para consistir e normalizar os dados correspondentes às operações do usuário para o ExpressoCalendar. 
     43* 
     44* @license    http://www.gnu.org/copyleft/gpl.html GPL 
     45* @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     46* @sponsor    Caixa Econômica Federal 
     47* @version    1.0 
     48* @since      Classe disponibilizada na versão Expresso 2.4.0  
     49*/ 
    950 
    1051class DBMapping extends Helpers { 
Note: See TracChangeset for help on using the changeset viewer.