mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
44149b6cbd
Bug: T116843 Change-Id: I99e790d72c7c534665d1d86c38459c5d0e60b91b
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;
|
|
}
|
|
}
|