Select Git revision
UserInterface.php
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();
}
?>