...
For more information on "Starring" download the Data Suitcases - Step by Step.pdf
mADL Commands.
These mADL commands can help you setting stars on or off or clearing all starred items in your data suitcase.
There are tree types, "On", "Off", "Clear".
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
$t->addControlMessage(array(
'startype' => 'session',
'staron' => array(1,2,3,4),
));
return $t->result;
$t->addControlMessage(array(
'startype' => 'session',
'staroff' => array(5,6),
));
return $t->result;
$t->addControlMessage(array(
'startype' => 'session',
'clearstars' => ''
));
return $t->result;
|
Info | ||
---|---|---|
| ||
STARS Data Suitcases were designed for BIC2 only are are not longer supported. |
...