Commit 12f50340 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Module StepStar : envoi des thèses vers Step/Star.

parent 6be63eca
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -20,7 +20,10 @@
        "ext-imagick": "*",
        "ext-intl": "*",
        "ext-json": "*",
        "ext-libxml": "*",
        "ext-readline": "*",
        "ext-saxonc": "*",
        "ext-simplexml": "*",
        "ext-soap": "*",
        "ext-xmlwriter": "*",
        "ext-xsl": "*",
+2 −1
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ return [
        'UnicaenAuthToken',
        'UnicaenAvis',
        'UnicaenLdap',
        'UnicaenDbAnonym',
        'UnicaenDbImport',
        'UnicaenFaq',
        'UnicaenLivelog',
@@ -49,7 +50,7 @@ return [
        'Notification',
        'Information',
        'Doctorant',
        //'StepStar',
        'StepStar',
        'Application',
    ],
    'module_listener_options' => [
+2 −2
Original line number Diff line number Diff line
--
-- Nouvelle catégorie.
--
insert into CATEGORIE_PRIVILEGE(ID, CODE, LIBELLE, ORDRE) values (666, 'utilisateur', 'Utilisateur', 5);

insert into CATEGORIE_PRIVILEGE(ID, CODE, LIBELLE, ORDRE)
    select nextval('categorie_privilege_id_seq'), 'utilisateur', 'Utilisateur', 5;

--
-- Nouveaux privilèges.
+7 −0
Original line number Diff line number Diff line
@@ -26,6 +26,13 @@ class Diffusion implements HistoriqueAwareInterface
    const EMBARGO_DUREE_2_ANS = '2 ans';
    const EMBARGO_DUREE_5_ANS = '5 ans';

    const EMBARGO_DUREES_PHP_INTERVALS = [
        self::EMBARGO_DUREE_6_MOIS => 'P6M',
        self::EMBARGO_DUREE_1_AN => 'P1Y',
        self::EMBARGO_DUREE_2_ANS => 'P2Y',
        self::EMBARGO_DUREE_5_ANS => 'P5Y',
    ];

    const DROIT_AUTEUR_OK_OUI = '1';
    const DROIT_AUTEUR_OK_NON = '0';

+0 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@ namespace Application\Entity\Db;

use DateTime;
use UnicaenApp\Entity\HistoriqueAwareTrait;
use Application\Entity\Db\Source;

class Financement {

Loading