0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_sign.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: wikiplugin_sign.php 56410 2015-10-04 17:31:28Z lindonb $ function wikiplugin_sign_info() { return array( 'name' => tr('Signature'), 'documentation' => 'PluginSign', 'description' => tr('Sign and date your contribution to a page'), 'prefs' => array('wikiplugin_sign'), 'tags' => array('basic'), 'inline' => true, 'format' => 'html', 'iconname' => 'pencil', 'introduced' => 10, 'params' => array( 'user' => array( 'required' => false, 'name' => tr('User'), 'description' => tr('Auto-generated, the username.'), 'since' => '10.0', 'default' => '', 'filter' => 'text', 'advanced' => true, ), 'datetime' => array( 'required' => false, 'name' => tr('Date and time'), 'description' => tr('Auto-generated, the timestamp'), 'since' => '10.0', 'default' => '', 'filter' => 'text', 'advanced' => true, ), ), ); } function wikiplugin_sign_rewrite($data, $params, $context) { if (empty($params['user']) && empty($params['datetime'])) { global $user; $date = gmdate(DateTime::W3C); return "{sign user=\"$user\" datetime=\"$date\"}"; } return false; } function wikiplugin_sign($data, $params, $offset) { if (empty($params['datetime'])) { return false; } $user = isset($params['user']) ? $params['user'] : ''; $time = strtotime($params['datetime']); if ($time === false) { return false; } $smarty = TikiLib::lib('smarty'); $smarty->assign( 'sign', array( 'user' => $user, 'datetime' => $params['datetime'], 'time' => $time, ) ); $tip = $smarty->fetch('wiki-plugins/wikiplugin_sign.tpl'); $smarty->loadPlugin('smarty_function_icon'); $icon = smarty_function_icon(array('name' => 'pencil', 'title' => '', 'iclass' => 'wp-sign-icon'), $smarty); TikiLib::lib('header')-> add_jq_onready( ' $(".wp-sign-icon").mouseenter(function () { $(this).next(".wp-sign").fadeIn("fast"); }).mouseleave(function () { var $this = $(this); setTimeout(function () {$this.next(".wp-sign").fadeOut();}, 1000); });' ); return $icon . $tip; }