Self hosted YPool.net worker dashboard
Open index.php file and change following things.
// API Key from ypool.net
$y = new YPool('XXXXXXXXXXXXXXXXXXXXXXXXX');
// Coins: XPM, FTC, PTS, DOGE, MTC, RIC
$coins = array('XPM', 'RIC', 'DOGE');;
require 'ypool.php';
//Parameter is the api-key. If you call something else than the global_stats an api-key is required.
$y = new YPool();
echo '<pre>';
print_r($y->global_stats(Coins::DOGE)); //You can use 'DOGE' as well.
echo '</pre>';