mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
17 lines
297 B
PHP
17 lines
297 B
PHP
<?php
|
|
|
|
/**
|
|
* Description of ContentActions
|
|
*
|
|
* @author jeremy
|
|
*/
|
|
class ContentActions extends Actions
|
|
{
|
|
public static function executeHome()
|
|
{
|
|
return ['page/home', [
|
|
'totalUSD' => CreditApi::getTotalDollarSales(),
|
|
'totalPeople' => CreditApi::getTotalPeople()
|
|
]];
|
|
}
|
|
}
|