Ignore:
Timestamp:
08/03/09 09:52:13 (15 years ago)
Author:
rodsouza
Message:

Ticket #589 - itens (doc. anexo ao ticket) 1, 2, 3, 4 e 5 integralmente e item 6 parcialmente.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/inc/class.bo_userinterface.inc.php

    r795 r1245  
    978978                return $this->so->getAreaInfo((int) $params['area_id'], $this->organizationInfo['organizacao_id']); 
    979979        } 
     980 
     981        /** 
     982         * Retorna a lista de telefones úteis da organização 
     983         * @return array Lista de telefones 
     984         * @access public 
     985         */ 
     986        function getUsefulPhones( ) 
     987        { 
     988                /* check for access */ 
     989                if ( ($checkWarnings = $this->checkOrgchartAccess( ) ) !== true ) 
     990                        return $checkWarnings; 
     991 
     992                return $this -> so -> getUsefulPhones( $this -> organizationInfo[ 'organizacao_id' ] ); 
     993        } 
     994 
     995        /** 
     996         * Retorna a lista as áreas com substituição de chefia 
     997         * @return array Lista das áreas com substituição de chefia 
     998         * @access public 
     999         */ 
     1000        function getAreaWithSubtituteBoss( ) 
     1001        { 
     1002                /* check for access */ 
     1003                if ( ($checkWarnings = $this->checkOrgchartAccess( ) ) !== true ) 
     1004                        return $checkWarnings; 
     1005 
     1006                return $this -> so -> getAreaWithSubtituteBoss( $this -> organizationInfo[ 'organizacao_id' ] ); 
     1007        } 
    9801008} 
    9811009?> 
Note: See TracChangeset for help on using the changeset viewer.