Changeset 202

Show
Ignore:
Timestamp:
06/30/08 15:36:14 (3 months ago)
Author:
llaumgui
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ez_publish/ezfluxbb/trunk/modules/ezfluxbb/function_definition.php

    r200 r202  
    7171 
    7272 
    73 /*$FunctionList['topics']               = array( 
     73$FunctionList['topics']                 = array( 
    7474        'topics'                                => 'current_user', 
    7575        'operation_types'       => array( 'read' ), 
     
    8181        'parameter_type'                => 'standard', 
    8282        '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                ), 
    8398                array(  'name'     => 'sort_by', 
    8499                                'type'     => 'array', 
     
    86101                                'default'  => array( 'last_post', false ) 
    87102                ), 
    88                 array(  'name'     => 'forum_id', 
    89                                 'type'     => 'array', 
     103                array(  'name'     => 'offset', 
     104                                'type'     => 'integer', 
    90105                                'required' => false, 
    91                                 'default'  => array( 'last_post', false ) 
     106                                'default'  => 0 
    92107                ), 
    93108        ) 
    94 );*/ 
    95          
    96  ?> 
     109); 
     110 
     111?>