0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_rcontent.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_rcontent.php 56284 2015-09-21 02:24:51Z lindonb $ function wikiplugin_rcontent_info() { return array( 'name' => tra('Random Dynamic Content'), 'documentation' => 'PluginRcontent', 'description' => tra('Display pre-programmed changing content'), 'prefs' => array( 'feature_dynamic_content', 'wikiplugin_rcontent' ), 'iconname' => 'merge', 'introduced' => 3, 'params' => array( 'id' => array( 'required' => true, 'name' => tra('Content ID'), 'description' => tra('Numeric value representing the content ID'), 'since' => '3.0', 'filter' => 'digits', 'default' => '', ) ) ); } function wikiplugin_rcontent( $data, $params ) { $dcslib = TikiLib::lib('dcs'); $lang = null; if ( isset( TikiLib::lib('parser')->option['language'] ) ) { $lang = TikiLib::lib('parser')->option['language']; } if ( $params['id'] ) return $dcslib->get_random_content((int) $params['id'], $lang); }