This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
spip-saml/base/saml.php

22 lines
432 B
PHP

<?php
/**
* Plugin SAML
*
*/
if (!defined("_ECRIRE_INC_VERSION")) return;
/**
* Ajouter des champs a la table auteurs
* @param array $tables_principales
* @return array
*/
function saml_declarer_tables_principales(&$tables_principales) {
// Extension de la table auteurs
$tables_principales['spip_auteurs']['field']['nameid'] = "text DEFAULT '' NOT NULL";
return $tables_principales;
}
?>