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

UserInterface.php

Blame
  • user avatar
    Tim Steiner authored
    Creation of framework level controller, model, and view directories.  Moved existing library files to /library.
    
    aa72efb2
    History
    UserInterface.php 520 B
    <?php
    /**
     * NMC Model User Interface
     *
     * LICENSE: Some license information
     *
     * @copyright  2006 New Media Center - University of Nebraska-Lincoln
     * @license    http://www.gnu.org/licenses/gpl.txt GPL
     * @version    0.0.1
     * @link       http://nmc.unl.edu/
     * @since      File available since Release 0.0.1
    */
    
    require_once('Zend.php');
    
    interface Nmc_Model_UserInterface
    {
        public function getId();
        public function getUserName();
        public function getShortName();
        public function getFullName();
    
    }
    
    ?>