1<?php 2/** 3 * DokuWiki Plugin structtasks 4 * 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6 * @author Chris MacMackin <cmacmackin@gmail.com> 7 * 8 */ 9 10namespace dokuwiki\plugin\structtasks\meta; 11 12/** 13 * Notifies a user when they are assigned to a task. 14 * 15 * @package dokuwiki\plugin\structtasks\meta 16 */ 17class SelfRemovalNotifier extends AbstractNotifier 18{ 19 const lang_key_prefix = 'self_removal'; 20 public function getNotifiableUsers($page, $editor_email, $new_data, $old_data) { 21 if (in_array($editor_email, $old_data['assignees']) and 22 !in_array($editor_email, $new_data['assignees'])) { 23 return array_filter( 24 $new_data['assignees'], 25 function ($val) use ($editor_email) {return $val !== $editor_email;} 26 ); 27 } else { 28 return []; 29 } 30 } 31} 32