Skip to content
Snippets Groups Projects
Select Git revision
  • aa72efb204287848a56a74e90dd30553277c2abf
  • master default
  • shib-cas
3 results

Nmc.php

Blame
  • user avatar
    Tim Steiner authored
    Creation of framework level controller, model, and view directories.  Moved existing library files to /library.
    
    aa72efb2
    History
    Nmc.php 287 B
    <?php
    
    class Nmc extends Nmc_Friendly
    {
        protected $__friends = array('TestController');
        private $bob = 'test';
    
        private function bob()
        {
            echo "hi";
        }
    
        public function __get($key)
        {
            echo "ha ha!";
            return parent::__get($key);
        }
    }
    
    ?>