在cp_event.php里,动态推送有这么一段代码
$feedarr = array(
'appid' => UC_APPID,
'icon' => 'event',
'uid' => '',
'username' => '',
'dateline' => $_SGLOBAL['timestamp'],
'title_template' => cplang('event_join'),
'title_data' => array('title'=>$event['title'],"eventid"=>$event['eventid'], "uid"=>$event['uid'],"username"=>$event['username']),
'body_template' => '',
'body_data' => array(),
'body_general' => '',
'image_1' => '',
'image_1_link' => '',
'image_2' => '',
'image_2_link' => '',
'image_3' => '',
'image_3_link' => '',
'image_4' => '',
'image_4_link' => '',
'target_ids' => '',
'friend' => ''
);
其中的'body_template' => '', 指的应该是活动的推送模板,但我找不到修改这个的地方(自己猜想可能是在哪个函数或.php文件里)
在数据库feed表中,活动feed记录,body_template字段的值是:<strong>{title}</strong><br/>地点:{province} {city} {location} <br/>时间:{starttime} - {endtime}
我想要修改的就是这个字段,但找不到应该在哪里修改(在未存进数据库之前就修改) |