1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 03:10:50 +02:00

New link_owner field added for improved tracking of plugin-related links.

This commit is contained in:
Cameron
2015-02-05 12:00:54 -08:00
parent 243e0457a9
commit 71451c9640
2 changed files with 2 additions and 1 deletions

View File

@@ -91,7 +91,7 @@ class links_admin_ui extends e_admin_ui
'link_order' => array('title'=> LAN_ORDER, 'type' => 'number', 'width' => 'auto', 'nolist'=>false, 'inline' => true),
'link_open' => array('title'=> LCLAN_19, 'type' => 'dropdown', 'inline'=>true, 'width' => 'auto', 'batch'=>true, 'filter'=>true, 'thclass' => 'left first'),
'link_function' => array('title'=> 'Function', 'type' => 'method', 'data'=>'str', 'width' => 'auto', 'thclass' => 'left first'),
'link_owner' => array('title'=> 'Owned by', 'type' => 'hidden', 'data'=>'str'),
'options' => array('title'=> LAN_OPTIONS, 'type' => null, 'forced'=>TRUE, 'width' => '10%', 'thclass' => 'center last', 'class'=>'center','readParms'=>'sort=1') // quick workaround
);

View File

@@ -228,6 +228,7 @@ CREATE TABLE links (
link_class varchar(255) NOT NULL default '0',
link_function varchar(100) NOT NULL default '',
link_sefurl varchar(255) NOT NULL,
link_owner varchar(50) NOT NULL default '',
PRIMARY KEY (link_id)
) ENGINE=MyISAM;