This file contains hidden or 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
| <form id="<?php echo $this->escape($this->form->getAttrib('id')); ?>" action="<?php echo $this->escape($this->form->getAction()); ?>" method="<?php echo $this->form->getMethod(); ?>"> | |
| <div class="fileupload-buttonbar"> | |
| <span class="fileinput-button"> | |
| <span>Add files...</span> | |
| <?php echo $this->form->Photo; ?> | |
| </span> | |
| <?php echo $this->form->Start; ?> | |
| <?php echo $this->form->Cancel; ?> | |
| <?php echo $this->form->Delete; ?> | |
| <div class="fileupload-progress fade"> |
This file contains hidden or 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 hidden or 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