if (isset($config['readOnly'
])) { $this->_readOnly =
$config['readOnly'
];
} if (isset($config['stored'
])) { $this->_stored =
$config['stored'
];
} // set the count of rows
$this->_count =
count($this->_data
);
$this->
init();
} /**
* Store data, class names, and state in serialized object
*
* @return array
*/
public function __sleep() { return array
('_data', '_tableClass', '_rowClass', '_pointer', '_count', '_rows', '_stored',
'_readOnly'
);
}