1
0
www.mikescher.com/www/internals/programs.php

32 lines
752 B
PHP
Raw Normal View History

2017-11-08 17:39:50 +01:00
<?php if(count(get_included_files()) ==1) exit("Direct access not permitted.");
class Programs
{
2018-01-03 22:08:56 +01:00
public static function readSingle($a)
2017-11-08 17:39:50 +01:00
{
2018-01-03 21:02:40 +01:00
$a['thumbnail_url'] = '/data/images/program_thumbnails/' . $a['thumbnail_name'];
$a['url'] = '/programs/view/' . $a['name'];
2017-11-08 17:39:50 +01:00
return $a;
}
public static function listAll()
{
2018-01-03 22:08:56 +01:00
$all = require (__DIR__ . '/../statics/programs/__all.php');
return array_map('self::readSingle', $all);
2018-01-03 21:02:40 +01:00
}
public static function listAllNewestFirst()
{
$data = self::listAll();
usort($data, function($a, $b) { return strcasecmp($b['add_date'], $a['add_date']); });
return $data;
2017-11-08 17:39:50 +01:00
}
2017-11-20 17:15:12 +01:00
public static function listUpdateData()
{
$a = require (__DIR__ . '/../statics/updates/programupdates.php');
return $a;
}
2017-11-08 17:39:50 +01:00
}