Skip to content

Instantly share code, notes, and snippets.

View tomflanagan's full-sized avatar

Tom Flanagan tomflanagan

View GitHub Profile
<?php
/**
* @file
* Contains \RestfulQueryVariable
*/
class RestfulQueryWebform extends \RestfulDataProviderDbQuery implements \RestfulDataProviderDbQueryInterface, \RestfulDataProviderInterface {
/**
* {@inheritdoc}
*/
public function publicFieldsInfo() {
@tomflanagan
tomflanagan / sap
Last active January 22, 2016 15:00
Example of extending wsclient.
<?php
function sap_soap_menu() {
$items['sap/getusers'] = array(
'page callback' => 'sap_soap_users',
'access arguments' => array('access content'),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}