1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 14:34:39 +01:00
MadelineProto/tools/build_docs/schemas.php

42 lines
714 B
PHP
Raw Normal View History

2022-12-29 20:40:06 +01:00
<?php declare(strict_types=1);
2020-06-16 17:52:55 +02:00
/**
* Load schema file names.
*
*/
function loadSchemas(): array
{
$res = [];
2022-12-08 20:16:40 +01:00
foreach (glob(getcwd().'/schemas/TL_telegram_*') as $file) {
preg_match("/telegram_v(\d+)/", $file, $matches);
2020-06-16 17:52:55 +02:00
$res[$matches[1]] = $file;
}
2022-12-08 20:16:40 +01:00
ksort($res);
2020-06-16 17:52:55 +02:00
return $res;
}
/**
* Return max available layer number.
*
* @param array $schemas Scheme array
*
* @return integer
*/
function maxLayer(array $schemas): int
{
2022-12-08 20:16:40 +01:00
$schemas = array_keys($schemas);
return end($schemas);
2020-06-16 17:52:55 +02:00
}
/**
* Init docs.
*
* @param array $layers Scheme array
*
* @return array Documentation information for old docs
*/
function initDocs(array $layers): array
{
2021-12-21 14:44:39 +01:00
return [];
2020-06-16 17:52:55 +02:00
}