Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BackendFrontnameGenerator.php
Go to the documentation of this file.
1 <?php
8 
13 {
17  const ADMIN_AREA_PATH_PREFIX = 'admin_';
18 
23 
29  public static function generate()
30  {
31  return self::ADMIN_AREA_PATH_PREFIX
32  . substr(base_convert(random_int(0, PHP_INT_MAX), 10, 36), 0, self::ADMIN_AREA_PATH_RANDOM_PART_LENGTH);
33  }
34 }