xref: /plugin/oauthgeneric/conf/metadata.php (revision ad7ba96d107a088eb9cfedef27a11192c4c72648)
1cf22df2fSAndreas Gohr<?php
2cf22df2fSAndreas Gohr/**
3cf22df2fSAndreas Gohr * Options for the oauthgeneric plugin
4cf22df2fSAndreas Gohr */
5cf22df2fSAndreas Gohr
6cf22df2fSAndreas Gohr$meta['key'] = array('string');
7cf22df2fSAndreas Gohr$meta['secret'] = array('password');
8cf22df2fSAndreas Gohr
9cf22df2fSAndreas Gohr$meta['authurl'] = array('string');
10cf22df2fSAndreas Gohr$meta['tokenurl'] = array('string');
11cf22df2fSAndreas Gohr$meta['userurl'] = array('string');
12*ad7ba96dSAndreas Gohr$meta['logouturl'] = array('string');
13cf22df2fSAndreas Gohr$meta['authmethod'] = array('multichoice', '_choices' => [0, 1, 6, 2, 3, 4, 5]);
14cf22df2fSAndreas Gohr$meta['scopes'] = array('array');
1551298b29SPietro Saccardi$meta['needs-state'] = array('onoff');
16cf22df2fSAndreas Gohr
17cf22df2fSAndreas Gohr$meta['json-user'] = array('string');
18cf22df2fSAndreas Gohr$meta['json-name'] = array('string');
19cf22df2fSAndreas Gohr$meta['json-mail'] = array('string');
20cf22df2fSAndreas Gohr$meta['json-grps'] = array('string');
21cf22df2fSAndreas Gohr
22cf22df2fSAndreas Gohr$meta['label'] = array('string');
23cf22df2fSAndreas Gohr$meta['color'] = array('string');
24