Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F883270
hook.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
hook.php
View Options
<?php
/*
* Zed
* (c) 2010, Dereckson, some rights reserved
* Released under BSD license
*
* Story hook
*/
abstract
class
StoryHook
{
/*
* @var Story the current story
*/
public
$story
;
/*
* @var StorySection the current story section
*/
public
$section
;
/*
* @var Perso the character involved in the story
*/
public
$perso
;
function
__construct
(
$story
,
$section
)
{
$this
->
story
=
$story
;
$this
->
section
=
$section
;
$this
->
perso
=
$GLOBALS
[
'CurrentPerso'
];
$this
->
initialize
();
}
/* Initializes hook. Called after constructor */
abstract
function
initialize
();
/*
* Gets choices extra links
* @param Array $links the hooks links array
*/
function
get_choices_links
(&
$links
)
{}
/*
* Updates description
* @param string the description text (from section and previous hooks)
*/
function
update_description
(&
$description
)
{}
/*
* Adds HTML code *AT THE END* of the story content block
* @return string HTML code to print
*/
function
add_content
()
{}
/*
* Adds HTML code *AFTER* the content block
* @return string HTML code to print
*/
function
add_html
()
{}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 4, 17:37 (19 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24784
Default Alt Text
hook.php (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment