mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 13:03:41 +02:00
16 lines
No EOL
394 B
PHP
16 lines
No EOL
394 B
PHP
<?php
|
|
|
|
namespace VLW;
|
|
|
|
/**
|
|
* # Timeline
|
|
* Constants related to the work timeline
|
|
*/
|
|
const TIMELINE_PREVIEW_LIMIT_PARAM = "limit";
|
|
const TIMELINE_PREVIEW_LIMIT_COUNT = 5;
|
|
|
|
/**
|
|
* # Forgejo
|
|
* Constants related to the fetching and caching of real-time prog. language use on Forgejo
|
|
*/
|
|
const FORGEJO_SI_BYTE_MULTIPLE = ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"]; |