| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Basic ajax class
- *
- * @package vamtam/consulting
- */
- /**
- * class VamtamAjax
- */
- class VamtamAjax {
- protected $actions;
- /**
- * Hook ajax actions
- */
- public function __construct() {
- if ( is_array( $this->actions ) ) {
- foreach ( $this->actions as $hook => $func ) {
- add_action( 'wp_ajax_vamtam-' . $hook, array( &$this, $func ) );
- }
- }
- }
- }
|