Ignore:
Timestamp:
05/17/11 16:26:32 (13 years ago)
Author:
airton
Message:

Ticket #1887 - Redefinicao do parser de email - Adequacao ao phpdoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.2.0.2/expressoMail1_2/inc/class.attachment.inc.php

    r4414 r4436  
    11<?php 
     2/** 
     3* Classe que manipula e gerencia toda a parte de anexos. 
     4* 
     5* @package    ExpressoMail 
     6* @license    http://www.gnu.org/copyleft/gpl.html GPL 
     7* @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     8* @author     Cristiano Correa 
     9*/ 
    210 
    311class attachment 
     
    1927    /** 
    2028     * Constructor 
     29         * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     30         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
    2131     * @param string $folder Imap folder name 
    2232     * @param integer $msgNumber Imap menssagem number 
     
    4959    /** 
    5060     * Open mail from Imap and parse structure 
    51      * @return string  menssagem 
     61     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     62         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     63         * @return string  menssagem 
    5264     */ 
    5365    public function setStructureFromMail($folder,$msgNumber) 
     
    8496 
    8597    /** 
    86      *  Set Stucture from Mail_mimeDecode Structure 
    87      * @param Mail_mimeDecode $structure 
     98     * Set Stucture from Mail_mimeDecode Structure 
     99     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     100         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     101         * @param Mail_mimeDecode $structure 
    88102     */ 
    89103    public function setStructure($structure) 
     
    94108    /** 
    95109     *  Set Stucture from raw mail code 
     110         * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     111         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
    96112     * @param Mail_mimeDecode $structure 
    97113     */ 
     
    104120    /** 
    105121     * Returns Attachment Decoded 
    106      * @param string $partNumber Index part 
     122     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     123         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     124         * @param string $partNumber Index part 
    107125     * @return string Attachment Decoded 
    108126     */ 
     
    116134     /** 
    117135     * Returns EmbeddedImages Infos 
    118      * @return array EmbeddedImages 
     136     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     137         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     138         * @return array EmbeddedImages 
    119139     */ 
    120140    public function getEmbeddedImagesInfo() 
     
    127147    /** 
    128148     * Returns Attachments Infos 
    129      * @return array 
     149     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     150         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     151         * @return array 
    130152     */ 
    131153    public function getAttachmentsInfo() 
     
    138160    /** 
    139161     * Returns Attachment Info 
    140      * @param string $partNumber Index part 
     162     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     163         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     164         * @param string $partNumber Index part 
    141165     * @return array 
    142166     */ 
     
    150174    /** 
    151175     * returns the source code menssagem 
    152      * @return string  menssagem 
     176     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     177         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     178         * @return string  menssagem 
    153179     */ 
    154180    private function _getRaw() 
     
    159185    /** 
    160186     * Returns content from the searched 
    161      * @param pointer $structure Structure object 
     187     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     188         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     189         * @param pointer $structure Structure object 
    162190     * @param string $soughtIndex 
    163191     * @param pointer $body Content 
     
    192220    } 
    193221 
     222        /** 
     223     * @license   http://www.gnu.org/copyleft/gpl.html GPL 
     224         * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) 
     225     */ 
    194226    private function _getPartInfo(&$structure, $soughtIndex,&$info,$pIndex = '0') 
    195227    { 
     
    353385    } 
    354386 
    355    
    356  
    357  
    358387} 
    359388 
    360  
    361389?> 
Note: See TracChangeset for help on using the changeset viewer.