Page MenuHomeCode

modifier.sector.php
No OneTemporary

modifier.sector.php

<?php
declare(strict_types=1);
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
use Hypership\Geo\Octocube;
use Zed\Models\Geo\Location;
/**
* Smarty sector modifier plugin
*
* Type: modifier<br>
* Name: sector<br>
* Purpose: prints the sector from a location
*/
function smarty_modifier_sector (Location $location) : string {
$xyz = explode(',', substr($location->local, 1, -1));
$x = (int)$xyz[0];
$y = (int)$xyz[1];
$z = (int)$xyz[2];
return (string)Octocube::getSector($x, $y, $z);
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 4, 09:05 (5 h, 59 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
21424
Default Alt Text
modifier.sector.php (557 B)

Event Timeline