Current File : /home/jvzmxxx/wiki1/extensions/Echo/includes/formatters/EchoModelFormatter.php
<?php

/**
 * A formatter for the notification flyout popup. Just the bare data needed to
 * render everything client-side.
 */
class EchoModelFormatter extends EchoEventFormatter {
	/**
	 * @param EchoEventPresentationModel $model
	 * @return array
	 */
	protected function formatModel( EchoEventPresentationModel $model ) {
		$data = $model->jsonSerialize();
		$data['iconUrl'] = EchoIcon::getUrl( $model->getIconType(), $this->language->getDir() );

		if ( isset( $data['links']['primary']['url'] ) ) {
			$data['links']['primary']['url'] = wfExpandUrl( $data['links']['primary']['url'] );
		}

		foreach ( $data['links']['secondary'] as &$link ) {
			$link['url'] = wfExpandUrl( $link['url'] );
		}

		$bundledIds = $model->getBundledIds();
		if ( $bundledIds ) {
			$data[ 'bundledIds' ] = $bundledIds;
		}

		return $data;
	}
}