source: extensions/typetags/main.inc.php @ 3301

Last change on this file since 3301 was 3301, checked in by patdenice, 15 years ago

New extension added:
Type tags (2.0.d)

File size: 930 bytes
Line 
1<?php
2/*
3Plugin Name: TypeT@gs
4Version: 2.0.d
5Description: Allow to manage color of tags, as you want...
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=166
7Author: Sakkhho & P@t
8*/
9
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11
12global $prefixeTable ;
13
14define('typetags_DIR' , basename(dirname(__FILE__)));
15define('typetags_PATH' , PHPWG_PLUGINS_PATH . typetags_DIR . '/');
16define('typetags_TABLE' , $prefixeTable . 'typetags');
17
18function typetags_admin_menu($menu)
19{
20  array_push($menu, array(
21    'NAME' => 'TypeT@gs',
22    'URL' => get_admin_plugin_menu_link(typetags_PATH . 'admin/typetags_admin.php')));
23  return $menu;
24}
25
26function typetags()
27{
28  include(typetags_PATH . 'typetags.php');
29}
30
31if (script_basename() == 'tags')
32{
33  add_event_handler('loc_begin_page_header', 'typetags', 60);
34}
35
36add_event_handler('get_admin_plugin_menu_links', 'typetags_admin_menu');
37
38?>
Note: See TracBrowser for help on using the repository browser.