Changeset 5069 for trunk/expressoMail1_2


Ignore:
Timestamp:
09/06/11 17:46:09 (13 years ago)
Author:
airton
Message:

Ticket #2266 - Atualizar documentacao dos arquivos PHP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/get_archive.php

    r4415 r5069  
    11<?php 
     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 it under 
     7* the terms of the GNU Affero General Public License version 3 as published by 
     8* the Free Software Foundation with the addition of the following permission 
     9* added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED 
     10* WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE 
     11* WARRANTY OF NON INFRINGEMENT  OF THIRD PARTY RIGHTS. 
     12* 
     13* This program is distributed in the hope that it will be useful, but WITHOUT 
     14* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     15* FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
     16* details. 
     17* 
     18* You should have received a copy of the GNU Affero General Public License 
     19* along with this program; if not, see www.gnu.org/licenses or write to 
     20* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
     21* MA 02110-1301 USA. 
     22* 
     23* This code is based on the OpenXchange Connector and on the Prognus pSync 
     24* Connector both developed by the community and licensed under the GPL 
     25* version 2 or above as published by the Free Software Foundation. 
     26* 
     27* You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, 
     28* 6731, PTI, Bl. 05, Esp. 02, Sl. 10, Foz do Iguaçu - PR - Brasil or at 
     29* e-mail address prognus@prognus.com.br. 
     30* 
     31* 
     32* @package    expressoMail 
     33* @license    http://www.gnu.org/copyleft/gpl.html GPL 
     34* @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     35* @version    1.0 
     36* @sponsor    Caixa Econômica Federal 
     37*/ 
     38 
    239/* 
    340 * Definitions 
     
    3269//----------------------------------------------// 
    3370 
    34 /* 
    35  * Functions 
    36  */ 
     71 
     72/** 
     73* Método que faz o download do arquivo 
     74* 
     75* @license    http://www.gnu.org/copyleft/gpl.html GPL 
     76* @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     77* @sponsor    Caixa Econômica Federal 
     78* @param  $strFileType 
     79* @param  $strFileName 
     80* @param  $newFileName 
     81* @param  $fileContent 
     82*/ 
    3783function downloadFile($strFileType, $strFileName, $newFileName, $fileContent) { 
    3884 
     
    183229        } 
    184230} 
     231 
     232 
    185233/** 
    186  * Delete Diretorio 
    187  * @param string $dir  
    188  */ 
     234* Método que limpa o diretório 
     235* 
     236* @license    http://www.gnu.org/copyleft/gpl.html GPL 
     237* @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     238* @sponsor    Caixa Econômica Federal 
     239* @param  $dir 
     240*/ 
    189241function cleanup( $dir ) 
    190242{ 
Note: See TracChangeset for help on using the changeset viewer.