Ignore:
Timestamp:
Mar 19, 2011, 10:27:48 AM (13 years ago)
Author:
mistic100
Message:

[extentions] Smilies Support

  • active for admin in the comments page
  • two new sets of smilies
  • help tip on admin page (needs translation)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/SmiliesSupport/main.inc.php

    r9683 r9764  
    22/*
    33Plugin Name: Smilies Support
    4 Version: 2.2.0
     4Version: 2.2.a
    55Description: Allow add Smilies for comments and descriptions.
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=159
     
    1616
    1717add_event_handler('render_comment_content', 'SmiliesParse', 60);
    18 add_event_handler('loc_begin_picture', 'set_smiliessupport_page');
     18add_event_handler('loc_after_page_header', 'add_smiliessupport');
     19
     20function add_smiliessupport() {
     21        global $page;
     22        if ($page['body_id'] == 'theCommentsPage' OR $page['body_id'] == 'thePicturePage') {
     23                set_smiliessupport_page();
     24        }
     25}
    1926
    2027if (script_basename() == 'admin')
Note: See TracChangeset for help on using the changeset viewer.