Show hint on Razer Forge TV account registration
[stouyapi.git] / bin / functions.php
1 <?php
2 /**
3  * Functions needed by import-game-data.php and build-html.php
4  */
5
6 function categoryPath($title)
7 {
8     if ($title == 'Tutorials') {
9         //OUYAs fetch "Make" from "discover/tutorials"
10         $title = strtolower($title);
11     }
12     return str_replace(['/', '\\', ' ', '+', '?', '!'], '_', $title);
13 }
14 ?>