Welcome Guest, Not a member yet? Register   Sign In
turn array into object active record can use
#1

[eluser]dionysus[/eluser]
I'm running a query and then decrypting it in the controller. After it is decrypted I was putting the results into an array and sending that to the view. The problem is with this solution I need to rewrite all of my views to parse the arrays sent instead of the active record objects sent before.

Is there a way to turn the decrypted array back into an object that will work with existing active record code in the view?
Before

Controller:

Code:
$name = $this->Clients_model->getNameData('*','client_id='.$clid,'');
$data['name'] = $name;
$this->load->view('names/name_view',$data);

View:

Code:
if($name->num_rows()) > 0){
    foreach($name->result() as $row){
        echo $row->data;
[...]

Now

Controller:

Code:
$name = $this->Clients_model->getNameData('*','client_id='.$clid,'');
$nameArray= array();
foreach ($name->result() as $row){
    $x = $row;
    $keys = array('id','client_id');
    $unenc = array();
    foreach ($x as $key=>$value){
        if(! in_array($key, $keys)){
            $unenc[$key]=$this->encrypt->decode($value,$this->e_key);
        }else{
            $unenc[$key]=$value;
        }
    }
    array_push($nameArray,$unenc);
}

//Creates an object with the data, but doesn't work with CI active record
//foreach ($nameArray as $akey  => $aval) {
//    $namea -> {$akey} = $aval;
//}

//return $data;
$data['name'] = $nameArray;
$this->load->view('names/name_view',$data);

View:

Code:
if(count($name) > 0){
    foreach($name as $key=>$row){
        echo $row['data'];
[...]

In the second (now) controller there is some commented out code that will make an object, but it doesn't behave as expected with active record. Is there a way to take the $nameArray() array and change it into an object that will work with existing view code (such as the code in the 'before:view' above)?

Thanks!


Messages In This Thread
turn array into object active record can use - by El Forum - 06-09-2010, 09:29 AM
turn array into object active record can use - by El Forum - 06-09-2010, 09:42 AM
turn array into object active record can use - by El Forum - 06-09-2010, 10:10 AM
turn array into object active record can use - by El Forum - 06-09-2010, 10:28 AM
turn array into object active record can use - by El Forum - 06-09-2010, 10:52 AM
turn array into object active record can use - by El Forum - 06-09-2010, 11:02 AM
turn array into object active record can use - by El Forum - 06-09-2010, 11:37 AM
turn array into object active record can use - by El Forum - 06-09-2010, 11:50 AM
turn array into object active record can use - by El Forum - 06-09-2010, 12:54 PM
turn array into object active record can use - by El Forum - 06-09-2010, 02:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB