Skip to content
Snippets Groups Projects
Select Git revision
  • 1dff73eba1642140bd5a2f11fb336ef3edb868b1
  • master default protected
2 results

gitlab_functions.py

Blame
  • TestController.php 546 B
    <?php
    
    class TestController extends Nmc_Controller_Action
    {
        public function __construct()
        {
            //$this->_registerPlugin(new Nmc_Controller_Action_Plugin_Authorize());
            //$this->_registerPlugin(new Nmc_Controller_Action_Plugin_Test());
        }
    
        public function indexAction()
        {
            return;
    
            $files = Files::getInstance()->fetchAll();
            foreach($files as $file) {
                $fileHash = hash('whirlpool', $file->data);
                $file->hash = $fileHash;
                $file->save();
            }
        }
    }
    
    ?>