Changeset 1660


Ignore:
Timestamp:
Dec 16, 2006, 10:16:59 AM (17 years ago)
Author:
vdigital
Message:

Web Service delivery part Admin 1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r1649 r1660  
    542542// should we load the active plugins ? true=Yes, false=No
    543543$conf['enable_plugins']=true;
     544
     545// +-----------------------------------------------------------------------+
     546// | Set default for Web Service                                              |
     547// +-----------------------------------------------------------------------+
     548
     549// Web services are accepted
     550  $conf['allow_web_services'] = true;
     551
     552// Max returned rows number ( > 0 )
     553  $conf['ws_allowed_limit'] = array(1,2,3,5,10,25);
     554
     555// By default can be delayed by 0, 1, 2, 3, 5, 7, 14 or 30 days
     556// 0 it's Now(), don't remove that one
     557  $conf['ws_postponed_start'] = array(0,1,2,3,5,7,14,30); /* In days */
     558
     559// By default 10, 5, 2, 1 year(s) or 6, 3, 1 month(s)
     560// or 15, 10, 7, 5, 1, 0 day(s)
     561// 0 it's temporary closed (Useful for one access)
     562  $conf['ws_durations'] = array(3650,1825,730,365,182,91,30,15,10,7,5,1,0);
     563
    544564?>
Note: See TracChangeset for help on using the changeset viewer.