mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
13 lines
193 B
PHP
13 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
class EchoEmailUserPresentationModel extends EchoEventPresentationModel {
|
||
|
|
||
|
public function getIconType() {
|
||
|
return 'site';
|
||
|
}
|
||
|
|
||
|
public function getPrimaryLink() {
|
||
|
return false;
|
||
|
}
|
||
|
}
|