## template=PHP4 class #prompt ( "Class Name:" $methodName ) #prompt ( "Class Description:" $methodDescription ) #prompt ( "Extends:" $extendsName) #if($extendsName)${_jeditIndentation}require_once('${extendsName}.class.php'); #end ${_jeditIndentation}/** ${_jeditIndentation} * ${methodDescription} ${_jeditIndentation} * @access public ${_jeditIndentation} * @author ${_jeditIndentation} */ ${_jeditIndentation}class ${methodName}#if($extendsName) extends $extendsName #end{ ${_jeditIndentation}/** ${_jeditIndentation} * Constructor ${_jeditIndentation} * @access private ${_jeditIndentation} * @return void ${_jeditIndentation} */ ${_jeditIndentation}function ${methodName}() ${_jeditIndentation}{ #if($extendsName)${_jeditIndentation}parent::$extendsName();#end ${_jeditIndentation}} ${_jeditIndentation}}