1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 09:39:55 +02:00

Event trigger-name updates (backward compatible)

This commit is contained in:
Cameron
2015-02-09 02:21:41 -08:00
parent 1697b1474b
commit d018cef6de
6 changed files with 25 additions and 22 deletions

View File

@@ -49,20 +49,9 @@ class comments_admin_ui extends e_admin_ui
protected $pluginTitle = LAN_COMMENTMAN;
protected $pluginName = 'core';
protected $eventName = 'comment';
protected $table = "comments";
/**
* If present this array will be used to build your list query
* You can link fileds from $field array with 'table' parameter, which should equal to a key (table) from this array
* 'leftField', 'rightField' and 'fields' attributes here are required, the rest is optional
*
* @var array [optional]
*/
// protected $tableJoin = array (
// 'u.user' => array('leftField' => 'comment_author_id', 'rightField' => 'user_id', 'fields' => '*'/*, 'leftTable' => '', 'joinType' => 'LEFT JOIN', 'whereJoin' => 'AND u.user_ban=0', 'where' => ''*/)
// );
//protected $listQry = "SELECT SQL_CALC_FOUND_ROWS * FROM #comments"; // without any Order or Limit.
protected $listQry = "SELECT c.*,u.user_name FROM #comments as c LEFT JOIN #user AS u ON c.comment_author_id = u.user_id ";
protected $listOrder = "comment_id desc";
//protected $editQry = "SELECT * FROM #comments WHERE comment_id = {ID}";