Fix title of data section when editing conversation label
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / files / lib / system / stat / ConversationMessageStatDailyHandler.class.php
1 <?php
2 namespace wcf\system\stat;
3
4 /**
5 * Stat handler implementation for conversation messages.
6 *
7 * @author Marcel Werk
8 * @copyright 2001-2018 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package WoltLabSuite\Core\System\Stat
11 */
12 class ConversationMessageStatDailyHandler extends AbstractStatDailyHandler {
13 /**
14 * @inheritDoc
15 */
16 public function getData($date) {
17 return [
18 'counter' => $this->getCounter($date, 'wcf'.WCF_N.'_conversation_message', 'time'),
19 'total' => $this->getTotal($date, 'wcf'.WCF_N.'_conversation_message', 'time')
20 ];
21 }
22 }