' . __('Show Details') . ''; $links[] = '' . 'Support' . ''; $links[] = '' . 'Contact' . ''; $links[] = '' . 'Donate' . ''; } return $links; } function Animate_Image() { $this->__construct(); // for PHP4 } function __construct() { if ( is_admin() ) { add_filter('plugin_row_meta', array(&$this, 'add_animate_image_links'), 10, 2); } else { add_action('wp_print_scripts', array(&$this, 'scripts')); } } } # class Animate_Image add_action('init', 'init_Animate_Image'); function init_Animate_Image() { new Animate_Image(); } ?>