Просмотр файла esoTalk-1.0.0g4/core/views/conversation/labels.php

Размер файла: 454B
<?php
// Copyright 2011 Toby Zerner, Simon Zerner
// This file is part of esoTalk. Please see the included license file for usage information.

if (!defined("IN_ESOTALK")) exit;

/**
 * Displays a list of labels that apply to a conversation.
 *
 * @package esoTalk
 */

foreach ($data["labels"] as $label) {
	echo "<span class='label label-$label' title='".T("label.$label")."'><i class='".ETConversationModel::$labels[$label][1]."'></i></span>\n";
}

?>