1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8/**
9 * Class for structure_move_down events
10 */
11class Reports_Send_EmailBuilder_StructureMoveDown extends Reports_Send_EmailBuilder_Abstract
12{
13	public function getTitle()
14	{
15		return tr('Wiki pages moved down in a structure tree:');
16	}
17
18	public function getOutput(array $change)
19	{
20		$output = tr(
21			"%0 moved a wiki page down in a structure tree",
22			"<u>{$change['user']}</u>"
23		);
24
25		return $output;
26	}
27}
28