View file upload/library/XenForo/DiscussionMessage/Definition/ProfilePost.php

File size: 1.02Kb
<?php

/**
 * User profile discussion message definition.
 *
 * @package XenForo_ProfilePost
 */
class XenForo_DiscussionMessage_Definition_ProfilePost extends XenForo_DiscussionMessage_Definition_Abstract
{
	/**
	 * Gets the structure of the message record.
	 *
	 * @return array
	 */
	protected function _getMessageStructure()
	{
		return array(
			'table' => 'xf_profile_post',
			'key' => 'profile_post_id',
			'container' => 'profile_user_id',
			'contentType' => 'profile_post'
		);
	}

	/**
	 * Gets the parts of the message configuration options that are to override the defaults.
	 *
	 * @return array
	 */
	protected function _getMessageConfiguration()
	{
		return array(
			'hasParentDiscussion' => false
		);
	}

	/**
	 * Gets the search data handler for this type of discussion.
	 *
	 * @return XenForo_Search_DataHandler_Abstract|false
	 */
	public function getSearchDataHandler()
	{
		return XenForo_Search_DataHandler_Abstract::create('XenForo_Search_DataHandler_ProfilePost');
	}
}