TypeDocumentsController.php 6.33 KB
<?php
namespace App\Controller;

use App\Controller\AppController;
use Cake\ORM\TableRegistry;

/**
 * TypeDocuments Controller
 *
 * @property \App\Model\Table\TypeDocumentsTable $TypeDocuments
 */
class TypeDocumentsController extends AppController
{

    // Nom pluriel affichable pour cette entité
    //@Override
    public function getNiceNamePluralLowerCase($alias_controller_name=null) {
        return 'types de documents';
    }
    
    /*
     * @Override
     *
     * Initialisation des autorisations pour les actions spécifiques à ce controleur
     *
     */
    protected function setAuthorizations() {

        // Actions autorisées seulement à superadmin
        //foreach (['add', 'edit', 'delete'] as $action) $this->setAuthorizationsForAction($action, -1, ['super'=>0]);
        foreach (['delete'] as $action) 
            $this->setAuthorizationsForAction($action, -1, ['super'=>0]);
        
        // Actions autorisées seulement à admin+
        foreach (['add', 'edit'] as $action)
            $this->setAuthorizationsForAction($action, -1, [
                'super'=>0,
                'admin'=>0
            ]);
    }
    
    /**
     * Give authorization for types suivis
     *
     * @param
     *            $user
     * @return boolean
     */
    /*
    //public function isAuthorized($user)
    public function isAuthorized($user,
        $action = null, $id=null, $role=null, $userCname=null) {
        /*
         * $configuration = $this->confLabinvent;
         * $role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
         * $action = $this->request->getAttribute('params')['action'];
         *
         * // Super-Admin peut accéder à chaque action
         * if($role == 'Super Administrateur') return true;
         *
         * // Administration peut ajouter, supprimer ou modifier un type de doc
         * if($role == 'Administration' && in_array($action,['add','delete','edit'])) return true;
         *
         * if (in_array($action, ['view', 'index'])) {
         * return true;
         * }
         *
         * if($this->userHasRoleAtLeast('Administration Plus')) {
         * if($action != 'delete') return true;
         * }
         *
         * return false;
         S/
        return $this->isAuthorizedCommons($user);
    }
    */

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->index_generic(
            'types de documents',
            ['nom'=>[]]
        );
        
        /*
        $typeDocuments = $this->paginate($this->TypeDocuments);
        
        $this->set(compact('typeDocuments'));
        $this->set('_serialize', [
            'typeDocuments'
        ]);
        */
    }

    /**
     * View method
     *
     * @param string|null $id
     *            Type Document id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        return $this->view_generic($id, [
            'Documents',
        ]);
        
        /*
        $typeDocument = $this->TypeDocuments->get($id, [
            'contain' => [
                'Documents'
            ]
        ]);
        
        $this->set('typeDocument', $typeDocument);
        $this->set('_serialize', [
            'typeDocument'
        ]);
        */
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $typeDocument = $this->TypeDocuments->newEntity();
        if ($this->request->is('post')) {
            $typeDocument = $this->TypeDocuments->patchEntity($typeDocument, $this->request->getData());
            if ($this->TypeDocuments->save($typeDocument)) {
                $this->Flash->success(__('Le type de document a bien été ajouté.'));
                return $this->redirect([
                    'action' => 'view',
                    $typeDocument->id
                ]);
            } else {
                $this->Flash->error(__('Le type de document n\'a pas pu être ajouté.'));
            }
        }
        $this->set(compact('typeDocument'));
        $this->set('_serialize', [
            'typeDocument'
        ]);
    }

    /**
     * Edit method
     *
     * @param string|null $id
     *            Type Document id.
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
    public function edit($id = null)
    {
        $typeDocument = $this->TypeDocuments->get($id, [
            'contain' => []
        ]);
        if ($this->request->is([
            'patch',
            'post',
            'put'
        ])) {
            $typeDocument = $this->TypeDocuments->patchEntity($typeDocument, $this->request->getData());
            if ($this->TypeDocuments->save($typeDocument)) {
                $this->Flash->success(__('Le type de document a bien été edité.'));
                return $this->redirect([
                    'action' => 'view',
                    $id
                ]);
            } else {
                $this->Flash->error(__('Le type de document n\'a pas pu être edité.'));
            }
        }
        $this->set(compact('typeDocument'));
        $this->set('_serialize', [
            'typeDocument'
        ]);
    }

    /**
     * Delete method
     *
     * @param string|null $id
     *            Type Document id.
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function delete($id = null)
    {
        $this->delete_generic($id);
        /*
        $this->request->allowMethod([
            'post',
            'delete'
        ]);
        $typeDocument = $this->TypeDocuments->get($id);
        if ($this->TypeDocuments->delete($typeDocument)) {
            $this->Flash->success(__('Le type de document a bien été supprimé.'));
        } else {
            $this->Flash->error(__('Le type de document n\'a pas pu être supprimé.'));
        }
        return $this->redirect([
            'action' => 'index'
        ]);
        */
    }
    
    
}