Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F883187
modifier.sector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
557 B
Subscribers
None
modifier.sector.php
View Options
<?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
Details
Attached
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)
Attached To
rZED Zed
Event Timeline
Log In to Comment