Vtiger Crm 7.5 儀表板中自建小工具
MYSQL 數據庫 vtiger_links 中加紀錄
INSERT INTO `vtiger_links` (`linkid`, `tabid`, `linktype`, `linklabel`, `linkurl`, `linkicon`, `sequence`, `handler_path`, `handler_class`, `handler`, `parent_link`) VALUES ('linkid', '3', 'DASHBOARDWIDGET', 'YOUR_WIDGET_NAME', 'YOUR_WIDGET_LINK', NULL, NULL, NULL, NULL, NULL, NULL);
linkid 自已改為没有使用的 ID
YOUR_WIDGET_LINK = index.php?module=Home&view=ShowWidget&name=YOUR_WIDGET_NAME
建立文件:
文件位置:/www/wwwroot/[YOUR_DIR]/modules/Vtiger/dashboards/YOUR_WIDGET_NAME.php
內容:
class Vtiger_YOUR_WIDGET_NAME_Dashboard extends Vtiger_IndexAjax_View { public function process(Vtiger_Request $request) { print_r('new_widget'); } }