A module to setup OAuth. OK, but what to do once setup of a client

id/secret is done ?
This commit is contained in:
Laurent Destailleur 2015-11-02 20:48:27 +01:00
parent 563a020595
commit 1bcda200e3
2 changed files with 9 additions and 8 deletions

View File

@ -323,13 +323,14 @@ foreach ($list as $key)
} }
print '</tr>';
print '</form>';
print '</table>'."\n"; print '</table>'."\n";
print '<br /><div style="text-align:center"><input type="submit" class="button" value="'.$langs->trans('Modify').'" name="button"></div>';
dol_fiche_end(); dol_fiche_end();
print '<div class="center"><input type="submit" class="button" value="'.$langs->trans('Modify').'" name="button"></div>';
print '</form>';
llxFooter(); llxFooter();
$db->close(); $db->close();

View File

@ -30,7 +30,7 @@ include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
/** /**
* Class to describe and activate module Direct Printing * Class to describe and activate module OAuth
*/ */
class modOauth extends DolibarrModules class modOauth extends DolibarrModules
{ {
@ -50,8 +50,8 @@ class modOauth extends DolibarrModules
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module) // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
$this->name = preg_replace('/^mod/i','',get_class($this)); $this->name = preg_replace('/^mod/i','',get_class($this));
// Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module) // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
$this->description = "Enable Oauth."; $this->description = "Enable OAuth authentication";
$this->version = 'dolibarr'; // 'development' or 'experimental' or 'dolibarr' or version $this->version = 'development'; // 'development' or 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name); $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific) // Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
$this->special = 1; $this->special = 1;
@ -93,7 +93,7 @@ class modOauth extends DolibarrModules
// $this->rights[$r][5] Niveau 2 pour nommer permission dans code // $this->rights[$r][5] Niveau 2 pour nommer permission dans code
$r++; $r++;
$this->rights[$r][0] = 66001; $this->rights[$r][0] = 66000;
$this->rights[$r][1] = 'OauthAccess'; $this->rights[$r][1] = 'OauthAccess';
$this->rights[$r][2] = 'r'; $this->rights[$r][2] = 'r';
$this->rights[$r][3] = 1; $this->rights[$r][3] = 1;