[eluser]InsiteFX[/eluser]
Unless the Reactor Team has chnaged it Libraries are the only one that will accept an array for parameters.
You can do it with a Model if you create an Intialize method and pass the array into it.
Code:
class Model_name extends CI_Model {
private $options = array();
public function initalize($params = array())
{
$this->options = $params;
}
}
If you look at the system/core/loader.php libraries you will see how they are doing it.
InsiteFX