19 declare(strict_types=1);
40 $this->index = $starting_index;
51 if (strpos($cid,
'-') === 0) {
52 $inverted_cid = str_replace(
'-',
'', $cid);
53 $index = (
int) base_convert($inverted_cid, 36, 10);
58 return (
int) base_convert($cid, 36, 10);
70 return '-' . base_convert((
string) $this->
invertIndex($index), 10, 36);
73 return base_convert((
string) $index, 10, 36);
Class ilCtrlStructureCidGenerator.
invertIndex(int $index)
Helper function that inverts an integer value.
getIndexByCid(string $cid)
Returns the index of a given cid.
getCid()
Returns the next available cid.
__construct(int $starting_index=0)
ilCtrlStructureCidGenerator Constructor
getCidByIndex(int $index)
Returns the cid for a given index.