Skip to content
Snippets Groups Projects
Select Git revision
  • d42aebe4a75f55536f526e1047e2153bd19397fc
  • master default protected
  • release-1.3.10
  • popover-bootstrap-3.4
  • zf-3.x
  • 3.0.9
  • 3.0.8
  • 1.3.10
  • 3.0.7
  • 3.0.6
  • 3.0.5
  • 3.0.4
  • 3.0.3
  • 3.0.2
  • 3.0.1
  • 3.0.0
  • 1.3.9
  • 1.3.8
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
25 results

Module.php

Blame
  • Forked from lib / unicaen / auth
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    FonctionLibelle.php 859 B
    <?php
    
    namespace Octopus\Entity\Db;
    
    class FonctionLibelle {
        /** @var integer */
        private $id;
        /** @var Fonction */
        private $fonction;
        /** @var string */
        private $libelle;
        /** @var string */
        private $genre;
        /** @var string */
        private $default;
    
        /**
         * @return int
         */
        public function getId()
        {
            return $this->id;
        }
    
        /**
         * @return Fonction
         */
        public function getFonction()
        {
            return $this->fonction;
        }
    
        /**
         * @return string
         */
        public function getLibelle()
        {
            return $this->libelle;
        }
    
        /**
         * @return string
         */
        public function getGenre()
        {
            return $this->genre;
        }
    
        /**
         * @return boolean
         */
        public function getDefault()
        {
            return ($this->default === 'O');
        }
    
    
    }