1<?php 2/** 3 * Options for the oauth plugin 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8/** @var helper_plugin_oauth $helper */ 9$helper = plugin_load('helper', 'oauth'); 10foreach($helper->listServices() as $service) { 11 $service = strtolower($service); 12 $meta["$service-key"] = array('string'); 13 $meta["$service-secret"] = array('string'); 14} 15