mirror of
https://github.com/e107inc/e107.git
synced 2025-02-13 02:54:39 +01:00
41 lines
896 B
PHP
41 lines
896 B
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/links_page/e_notify.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if(defined('ADMIN_PAGE') && ADMIN_PAGE === true)
|
|
{
|
|
include_lan(e_PLUGIN."links_page/languages/".e_LANGUAGE."_admin_links_page.php");
|
|
$config_category = NT_LAN_LP_1;
|
|
$config_events = array('linksub' => NT_LAN_LP_2);
|
|
}
|
|
|
|
|
|
if (!function_exists('notify_linksub'))
|
|
{
|
|
function notify_linksub($data)
|
|
{
|
|
global $nt, $_lanfile;
|
|
include_lan(e_PLUGIN."links_page/languages/".e_LANGUAGE.".php");
|
|
foreach ($data as $key => $value)
|
|
{
|
|
$message .= $key.': '.$value.'<br />';
|
|
}
|
|
$nt -> send('linksub', NT_LAN_LP_3, $message);
|
|
}
|
|
}
|
|
|
|
?>
|