Ajax.php 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php namespace AC\Nonce; use AC\Form\Nonce; class Ajax extends Nonce { const NAME = '_ajax_nonce'; const ACTION = 'ac-ajax'; public function __construct() { parent::__construct( self::ACTION, self::NAME ); } }