You are here

function services_method_load in Services 6

Same name and namespace in other branches
  1. 6.2 services.module \services_method_load()
  2. 7 services.module \services_method_load()

Menu wildcard loader for browsing Service methods.

File

./services.module, line 457
@author Services Dev Team

Code

function services_method_load($method) {
  $method = services_method_get($method);
  return isset($method) ? $method : FALSE;
}