* Get an array of attributes to take in from the installer. Almost all forums require a table prefix, which the requirement there-of is defined through this function.
@@ -1339,7 +1339,7 @@ function cns_unban_member($member_id)
* @param BINARY $required Whether the field is to be shown on the join form
* @param BINARY $show_in_posts Whether this field is shown in posts and places where member details are highlighted (such as an image in a member gallery).
* @param BINARY $show_in_post_previews Whether this field is shown in preview places, such as in the forum member tooltip.
* @param integer $order The order of this field relative to other fields.
* @param ?integer $order The order of this field relative to other fields. (null: keep the current order)
* @param LONG_TEXT $only_group The usergroups that this field is confined to (comma-separated list).
$this->connection->query('ALTER TABLE '.$this->connection->get_table_prefix().'users RENAME COLUMN cms_'.$old_name.' TO cms_'.$new_name,null,null,true);
}
returntrue;
}
/**
* Get an array of attributes to take in from the installer. Almost all forums require a table prefix, which the requirement there-of is defined through this function.
* The attributes have 4 values in an array
@@ -821,6 +837,31 @@ class Forum_driver_aef extends Forum_driver_base
return$tempid;
}
/**
* Get rows of members after the given one.
* It cannot be assumed there are no gaps in member IDs, as members may be deleted.
*
* @param ?MEMBER $member_id The member ID to increment (null: find the very first members)
* @param integer $total Number of members to retrieve
* Get an array of attributes to take in from the installer. Almost all forums require a table prefix, which the requirement there-of is defined through this function.
* The attributes have 4 values in an array
@@ -957,6 +979,38 @@ class Forum_driver_cns extends Forum_driver_base
return$tempid;
}
/**
* Get rows of members after the given one.
* It cannot be assumed there are no gaps in member IDs, as members may be deleted.
*
* @param ?MEMBER $member_id The member ID to increment (null: find the very first members)
* @param integer $total Number of members to retrieve