A simple select of this form:
$select = $this->select();
return $rowset = $this->fetchAll($select);
Now, There is an inherit column in the array, so the table is of the form:
id | role | inherits |
1 | admin | 2 |
2 | player | 3 |
And When displayed I would like the inherirs column to show the Role it actually inherits from instead of the id.
The array returned by Zend_Db_Table_Abstract is extremely convoluted, so I can't just say:
$array[0][inherits]