- Timestamp:
- 06/30/08 15:36:14 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ez_publish/ezfluxbb/trunk/modules/ezfluxbb/function_definition.php
r200 r202 71 71 72 72 73 /*$FunctionList['topics'] = array(73 $FunctionList['topics'] = array( 74 74 'topics' => 'current_user', 75 75 'operation_types' => array( 'read' ), … … 81 81 'parameter_type' => 'standard', 82 82 'parameters' => array( 83 array( 'name' => 'forum_id_filter_type', 84 'type' => 'string', 85 'required' => false, 86 'default' => false 87 ), 88 array( 'name' => 'forum_id_filter_array', 89 'type' => 'string', 90 'required' => false, 91 'default' => false 92 ), 93 array( 'name' => 'limit', 94 'type' => 'integer', 95 'required' => false, 96 'default' => 20 97 ), 83 98 array( 'name' => 'sort_by', 84 99 'type' => 'array', … … 86 101 'default' => array( 'last_post', false ) 87 102 ), 88 array( 'name' => ' forum_id',89 'type' => ' array',103 array( 'name' => 'offset', 104 'type' => 'integer', 90 105 'required' => false, 91 'default' => array( 'last_post', false )106 'default' => 0 92 107 ), 93 108 ) 94 ); */95 96 ?>109 ); 110 111 ?>
