This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class App_Validate_Xml extends Zend_Validate_Abstract | |
{ | |
const ERROR_MESSAGE = 'error'; | |
public $xmlError; | |
protected $_messageVariables = array( | |
'xmlError' => 'xmlError' | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @author James McFadden <[email protected]> | |
*/ | |
final class PluralHelper | |
{ | |
private static $irregularPluralForms = array( | |
'alumnus' => 'alumni', | |
'analysis' => 'analyses', | |
'appendix' => 'appendices', |
NewerOlder