mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
7d2a15d3bc
* edit-user-talk * mention * user-rights * emailuser Bug: T121735 Change-Id: I72e382b9ff9d19c6acc0df507fdff65732b66450
17 lines
282 B
PHP
17 lines
282 B
PHP
<?php
|
|
|
|
class EchoEmailUserPresentationModel extends EchoEventPresentationModel {
|
|
|
|
public function getIconType() {
|
|
return 'emailuser';
|
|
}
|
|
|
|
public function getPrimaryLink() {
|
|
return false;
|
|
}
|
|
|
|
public function getSecondaryLinks() {
|
|
return array( $this->getAgentLink() );
|
|
}
|
|
}
|