Mercurial > hg > rr-repo
view sites/all/modules/views/plugins/views_plugin_argument_validate_numeric.inc @ 13:134d4b2e75f6
updated quicktabs and google analytics modules
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Tue, 29 Oct 2013 13:48:59 +0000 |
parents | ff03f76ab3fe |
children |
line wrap: on
line source
<?php /** * @file * Contains the numeric argument validator plugin. */ /** * Validate whether an argument is numeric or not. * * @ingroup views_argument_validate_plugins */ class views_plugin_argument_validate_numeric extends views_plugin_argument_validate { function validate_argument($argument) { return is_numeric($argument); } }