0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_content.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: wikiplugin_content.php 56254 2015-09-20 02:27:31Z lindonb $ function wikiplugin_content_info() { return array( 'name' => tra('Dynamic Content'), 'documentation' => 'PluginContent', 'description' => tra('Display content from dynamic content repository'), 'prefs' => array( 'feature_dynamic_content', 'wikiplugin_content'), 'filter' => 'text', 'iconname' => 'merge', 'introduced' => 3, 'tags' => array( 'basic' ), 'params' => array( 'id' => array( 'required' => false, 'name' => tra('Content ID'), 'description' => tra('Dynamic content ID. The value can be obtained in the listing.'), 'since' => '3.0', 'filter' => 'digits', 'default' => '', ), 'label' => array( 'required' => false, 'name' => tra('Content Label'), 'description' => tra('Label of the dynamic content to display.'), 'since' => '5.0', 'filter' => 'text', 'default' => '', ), ), ); } function wikiplugin_content( $data, $params ) { $dcslib = TikiLib::lib('dcs'); $lang = null; if ( isset( TikiLib::lib('parser')->option['language'] ) ) { $lang = TikiLib::lib('parser')->option['language']; } if ( isset($params['id']) && $params['id'] ) { return $dcslib->get_actual_content((int) $params['id'], $lang); } elseif ( isset($params['label']) && $params['label'] ) { return $dcslib->get_actual_content_by_label($params['label'], $lang); } }