Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as PHP by 11111 ( 14 years ago )
/**
    * @name load_projectlist (private)
    * 
    * Carga una lista de proyectos según los datos pasados (filtros+paginacion+orden).
    */
    private function load_projectlist(){
        $this->log->debug("load_projectlist :: Carga lista de proyectos");
        $this->command_mysql->set_procediment("GET_BYID_PROJECTCONFIG");
        $this->command_mysql->addParameter("ID", $this->id, ClsCommandMysql::TYPE_PARAMETER_NUMBER); 
        $this->mysql_engine->execute_procedure($this->command_mysql); 
        if( $this->mysql_engine->num_rows() > 0 ){
            $this->project_configs = Array();
            while($row = $this->mysql_engine->fetch_array()){
                $row['DESCRIPTION'];
            }   
        }  else {
            $this->log->debug("load_projectlist :: No se han encontrado proyectos segun los filtros pasados");
            throw new Exception($this->lang_engine->get_format_textXML('cp_noconfig',$this->id));
        } 
        $this->log->debug("Fin carga lista proyectos");        
    }

 

Revise this Paste

Your Name: Code Language: