ars_GetListSchema(ctrl, changedsince=0)

This function fetches the list of all schemas available to the user. changedsince is an optional timestamp that will cause only schemas newer than that time to be returned.

On success
Returns an array of schema's available.
On failure
Returns undef.

Example:

      @schemas = ars_GetListSchema($c);
      for($i = 0; $i < $#schemas ; $i++) {
           print "$schemas[$i]\n";
      }
      

<-- Back to Table of Contents