Ignore:
Timestamp:
03/17/10 16:39:47 (14 years ago)
Author:
pedroerp
Message:

Ticket #609 - Corrigindo demais pendências na utilização da nova factory.

Location:
sandbox/workflow/branches/609/inc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sandbox/workflow/branches/609/inc/class.bo_userinterface.inc.php

    r2267 r2291  
    10701070        function callVoipConnect($params) 
    10711071        { 
    1072                 $cachedLDAP = $GLOBALS['workflow']['factory']->newInstance('CachedLDAP'); 
     1072                $cachedLDAP = Factory::newInstance('CachedLDAP'); 
    10731073                $cachedLDAP->setOperationMode($cachedLDAP->OPERATION_MODE_LDAP); 
    10741074 
  • sandbox/workflow/branches/609/inc/class.so_adminaccess.inc.php

    r2233 r2291  
    202202                { 
    203203                        $GLOBALS['phpgw']->db =& Factory::getInstance('WorkflowObjects')->getDBExpresso(); 
    204                         $GLOBALS['phpgw']->acl =& Factory::getForeignInstance('phpgwapi', 'acl', $userID); 
     204                        $GLOBALS['phpgw']->acl =& Factory::getInstance('acl', $userID); 
    205205                } 
    206206 
  • sandbox/workflow/branches/609/inc/engine/config.egw.inc.php

    r2264 r2291  
    305305                { 
    306306                        // This way we create a new run_activity instance for the next activity 
    307                         $run_activity = Factory::getInstance('workflow.run_activity.go'); 
     307                        $run_activity = Factory::getInstance('run_activity'); 
    308308                        $data = $run_activity->go($activityId, $iid, $auto); 
    309309                        return $data; 
Note: See TracChangeset for help on using the changeset viewer.