Ejemplo n.º 1
0
 public static function processRequestArgs()
 {
     // set the widget testing level
     if (isset($_GET['widgetTestingLevel'])) {
         self::setWidgetTestingLevel($_GET['widgetTestingLevel']);
     }
     // set the API testing level
     if (isset($_GET['apiTestingLevel'])) {
         self::setApiTestingLevel($_GET['apiTestingLevel']);
     }
     if (isset($_GET['useLocalTracking']) && strtolower($_GET['useLocalTracking']) == 'true') {
         self::$useLocalTracking = true;
     }
 }