コード例 #1
0
ファイル: Entity.php プロジェクト: crowdtruth/crowdtruth
 public static function generateIncrementedBaseURI($entity)
 {
     $seqName = 'entity/' . $entity->project . '/' . $entity->type;
     $id = Counter::getNextId($seqName);
     return $seqName . '/' . $id;
 }