9e5e444552
- Improved file and class naming - "handler"-> "listener" (callbacks, commands)
32 lines
497 B
PHP
32 lines
497 B
PHP
<?php
|
|
|
|
namespace ManiaControl\Manialinks;
|
|
|
|
/**
|
|
* Handler for manialink ids
|
|
*
|
|
* @author kremsy & steeffeen
|
|
*/
|
|
class ManialinkIdHandler {
|
|
/**
|
|
* Private properties
|
|
*/
|
|
private $maniaLinkIdCount = 0;
|
|
|
|
/**
|
|
* Reserve manialink ids
|
|
*
|
|
* @param int $count
|
|
* @return array with manialink Ids
|
|
*/
|
|
public function reserveManiaLinkIds($count) {
|
|
$mlIds = array();
|
|
for ($i = 0; $i < $count; $i++) {
|
|
array_push($mlIds, ++$this->maniaLinkIdCount);
|
|
}
|
|
return $mlIds;
|
|
}
|
|
}
|
|
|
|
?>
|