Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F823327
widget_tp.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Mar 9, 7:00 PM
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Mar 11, 7:00 PM (6 h, 47 m)
Engine
blob
Format
Raw Data
Handle
585661
Attached To
rMCUS Modules.Custom
widget_tp.php
View Options
<?php
defined
(
'FULL_PATH'
)
or
die
(
'restricted access!'
);
/**
* Widgets Tag Processor (sample)
*
*/
class
WidgetTagProcessor
extends
kDBTagProcessor
{
/**
* Custom tag to output "Hello World!"
*
* @param Array $params
* @return string
*/
function
NewTag
(
$params
)
{
return
'Hello world!'
;
}
/**
* Returns a link for editing product
*
* @param Array $params
* @return string
*/
function
ItemEditLink
(
$params
)
{
$object
=&
$this
->
getObject
();
/* @var $object kDBList */
$edit_template
=
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'AdminTemplatePath'
)
.
'/'
.
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'AdminTemplatePrefix'
)
.
'edit'
;
$url_params
=
Array
(
'm_opener'
=>
'd'
,
$this
->
Prefix
.
'_mode'
=>
't'
,
$this
->
Prefix
.
'_event'
=>
'OnEdit'
,
$this
->
Prefix
.
'_id'
=>
$object
->
GetID
(),
'pass'
=>
'all,'
.
$this
->
Prefix
,
'no_pass_through'
=>
1
,
);
return
$this
->
Application
->
HREF
(
$edit_template
,
''
,
$url_params
);
}
}
Event Timeline
Log In to Comment