本文整理匯總了PHP中backup_nested_element::get_iterator方法的典型用法代碼示例。如果您正苦於以下問題:PHP backup_nested_element::get_iterator方法的具體用法?PHP backup_nested_element::get_iterator怎麽用?PHP backup_nested_element::get_iterator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類backup_nested_element
的用法示例。
在下文中一共展示了backup_nested_element::get_iterator方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_iterator
/**
* For sql or table datasources, this will iterate over the "external" DB connection
* stored in this class instead of the default $DB. All other cases use the parent default.
* @param object $processor the processor
*/
protected function get_iterator($processor)
{
if ($this->get_source_table() !== null) {
// It's one table, return recordset iterator.
return $this->get_source_db()->get_recordset($this->get_source_table(), backup_structure_dbops::convert_params_to_values($this->procparams, $processor), $this->get_source_table_sortby());
} else {
if ($this->get_source_sql() !== null) {
// It's one sql, return recordset iterator.
return $this->get_source_db()->get_recordset_sql($this->get_source_sql(), backup_structure_dbops::convert_params_to_values($this->procparams, $processor));
}
}
return parent::get_iterator($processor);
}