/**
* Manage aggregates in a database
*
- * $Id: aggregates.php,v 1.10.4.1 2005/03/01 10:47:02 jollytoad Exp $
+ * $Id: aggregates.php,v 1.10.4.2 2005/03/09 12:29:01 jollytoad Exp $
*/
// Include application functions
$aggregates = &$data->getAggregates();
+ $proto = concat(field('proname'), ' (', field('proargtypes'), ')');
+
$actions = array(
'item' => array(
- 'text' => field('proname'),
+ 'text' => $proto,
'icon' => 'functions',
+ 'toolTip' => field('aggcomment'),
),
);
/**
* Manage functions in a database
*
- * $Id: functions.php,v 1.47.4.1 2005/03/01 10:47:03 jollytoad Exp $
+ * $Id: functions.php,v 1.47.4.2 2005/03/09 12:29:01 jollytoad Exp $
*/
// Include application functions
$funcs = &$data->getFunctions();
+ $proto = concat(field('proname'),' (',field('proarguments'),')');
+
$actions = array(
'item' => array(
- 'text' => field('proname'),
+ 'text' => $proto,
'icon' => 'functions',
+ 'toolTip' => field('procomment'),
'url' => 'redirect.php',
'urlvars' => array(
'subject' => 'function',
'action' => 'properties',
- 'function' => field('proproto'),
+ 'function' => $proto,
'function_oid' => field('prooid'),
),
),
/**
* Manage opclasss in a database
*
- * $Id: opclasses.php,v 1.6.4.1 2005/03/01 10:47:03 jollytoad Exp $
+ * $Id: opclasses.php,v 1.6.4.2 2005/03/09 12:29:01 jollytoad Exp $
*/
// Include application functions
$opclasses = &$data->getOpClasses();
+ // OpClass prototype: "op_class/access_method"
+ $proto = concat(field('opcname'),'/',field('amname'));
+
$actions = array(
'item' => array(
- 'text' => field('amname'),
+ 'text' => $proto,
'icon' => 'operators',
+ 'toolTip' => field('opccomment'),
),
);
/**
* Manage operators in a database
*
- * $Id: operators.php,v 1.17.4.1 2005/03/01 10:47:03 jollytoad Exp $
+ * $Id: operators.php,v 1.17.4.2 2005/03/09 12:29:01 jollytoad Exp $
*/
// Include application functions
$operators = &$data->getOperators();
+ // Operator prototype: "type operator type"
+ $proto = concat(field('oprleftname'), ' ', field('oprname'), ' ', field('oprrightname'));
+
+ // Alternative prototype: "operator (type,type)"
+ #$proto = concat(field('oprname'), ' (', field('oprleftname','NONE'), ',', field('oprrightname','NONE'), ')');
+
$actions = array(
'item' => array(
- 'text' => field('oprname'),
+ 'text' => $proto,
'icon' => 'operators',
+ 'toolTip' => field('oprcomment'),
'url' => 'operators.php',
'urlvars' => array(
'subject' => 'operator',
'action' => 'properties',
- 'operator' => field('oprname'),
+ 'operator' => $proto,
'operator_oid' => field('oid'),
),
),