2015-10-28 07:23:38 +00:00
|
|
|
<?php
|
|
|
|
class EchoThanksPresentationModel extends EchoEventPresentationModel {
|
|
|
|
public function canRender() {
|
|
|
|
return (bool)$this->event->getTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getIconType() {
|
|
|
|
return 'thanks';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeaderMessage() {
|
|
|
|
$msg = parent::getHeaderMessage();
|
|
|
|
$msg->params( $this->event->getTitle()->getPrefixedText() );
|
|
|
|
|
2015-11-13 00:03:55 +00:00
|
|
|
$msg->params( $this->getViewingUserForGender() );
|
2015-10-28 07:23:38 +00:00
|
|
|
return $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPrimaryLink() {
|
|
|
|
return array(
|
|
|
|
$this->event->getTitle()->getLocalURL( array(
|
|
|
|
'oldid' => 'prev',
|
|
|
|
'diff' => $this->event->getExtraParam( 'revid' )
|
|
|
|
) ),
|
2015-11-12 21:56:43 +00:00
|
|
|
$this->msg( 'notification-link-text-view-edit' )->text()
|
2015-10-28 07:23:38 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSecondaryLinks() {
|
2015-12-22 16:02:50 +00:00
|
|
|
return array( $this->getAgentLink() );
|
2015-10-28 07:23:38 +00:00
|
|
|
}
|
|
|
|
}
|