Current File : /home/aventura/www/site/wp-content/plugins/victheme_core/vtcore/validator/numeric.php
<?php
/**
 * Text validation class for testing valid number
 *
 * @author jason.xie@victheme.com
 */
class VTCore_Validator_Numeric
extends VTCore_Validator_Base {

  public function validateText() {

    if ($this->getText() != '') {
      return is_numeric($this->getText());
    }

    return true;
  }

}