Sindbad~EG File Manager
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class AAL_Hook_Taxonomies extends AAL_Hook_Base {
public function hooks_created_edited_deleted_term( $term_id, $tt_id, $taxonomy, $deleted_term = null ) {
// Make sure do not action nav menu taxonomy.
if ( 'nav_menu' === $taxonomy )
return;
if ( 'delete_term' === current_filter() )
$term = $deleted_term;
else
$term = get_term( $term_id, $taxonomy );
if ( $term && ! is_wp_error( $term ) ) {
if ( 'edited_term' === current_filter() ) {
$action = 'updated';
} elseif ( 'delete_term' === current_filter() ) {
$action = 'deleted';
$term_id = '';
} else {
$action = 'created';
}
aal_insert_log( array(
'action' => $action,
'object_type' => 'Taxonomies',
'object_subtype' => $taxonomy,
'object_id' => $term_id,
'object_name' => $term->name,
) );
}
}
public function __construct() {
add_action( 'created_term', array( &$this, 'hooks_created_edited_deleted_term' ), 10, 3 );
add_action( 'edited_term', array( &$this, 'hooks_created_edited_deleted_term' ), 10, 3 );
add_action( 'delete_term', array( &$this, 'hooks_created_edited_deleted_term' ), 10, 4 );
parent::__construct();
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists