Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F883194
choice.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
choice.php
View Options
<?php
/*
* Zed
* (c) 2010, Dereckson, some rights reserved
* Released under BSD license
*
* Story choice
*/
class
StoryChoice
{
public
$goto
;
public
$text
;
public
$guid
;
function
__construct
()
{
//The guid allows to build temporary URLs to get to right choice
$this
->
guid
=
new_guid
();
}
function
__toString
()
{
return
$this
->
text
;
}
/*
* Initializes a new instance of StoryChoice class from a XML element
* @param SimpleXMLElement the xml element to parse
* @return StoryChoice the story choice class
*/
static
function
from_xml
(
$xml
)
{
$choice
=
new
StoryChoice
();
//Parses attribute
foreach
(
$xml
->
attributes
()
as
$key
=>
$value
)
{
switch
(
$key
)
{
case
'goto'
:
$choice
->
$key
=
(
string
)
$value
;
break
;
default
:
message_die
(
GENERAL_ERROR
,
"Unknown attribute: $key =
\"
$value
\"
"
,
"Story error"
);
}
}
//Parses content
$choice
->
text
=
(
string
)
$xml
;
return
$choice
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 4, 09:46 (5 h, 14 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
22564
Default Alt Text
choice.php (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment