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 FooValidator implements Validator | |
| { | |
| public function __construct(Validator $validator) | |
| { | |
| $this->validator = $validator | |
| $this->validator->rule('name', 'not_empty') | |
| ->rule('name', 'max_length', [':value', 35]) | |
| ->rule('name', 'min_length', [':value', 5]); |
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
| #!/usr/bin/env bash | |
| # call like this on the target server: | |
| # CHEFREPO='git://github.com/paulsschwarz/vagrant-cookbooks.git' CHEF_ENV='production' bash <( curl -L https://raw.github.com/gist/2974764 ) | |
| set -e | |
| export RUBYGEMS_VERSION="1.8.24" | |
| export CHEF_DIR="${HOME}/chef" | |
| sudo rm -rf $CHEF_DIR | |
| mkdir -p "$CHEF_DIR" |
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 defined('SYSPATH') or die('No direct script access.'); | |
| class Security extends Kohana_Security { | |
| protected static $_logout_token_name = 'logout_token_key'; | |
| public static $csrf_field = 'token'; | |
| /** | |
| * Creates a validation object to check if the field specified |