Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
themeRDark
titlemADL Stars Samples
linenumberstrue
collapsetrue
$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
titleNOTE

STARS Data Suitcases were designed for BIC2 only are are not longer supported.

...