TrackManiaControl/application/core/Manialinks/ManialinkIdHandler.php
Steffen Schröder 9e5e444552 - subfolders for different classes
- Improved file and class naming
- "handler"-> "listener" (callbacks, commands)
2013-11-12 15:48:25 +01:00

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;
}
}
?>