1<?php 2/** 3 * Default settings 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(false) as $service) { 11 $service = strtolower($service); 12 $conf["$service-key"] = ''; 13 $conf["$service-secret"] = ''; 14} 15