0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_content.php
<?php // (c) Copyright 2002-2011 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 33195 2011-03-02 17:43:40Z changi67 $ 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', 'icon' => 'pics/icons/database_table.png', 'params' => array( 'id' => array( 'required' => false, 'name' => tra('Content ID'), 'description' => tra('Dynamic content ID. The value can be obtained in the listing.'), 'filter' => 'digits', 'default' => '', ), 'label' => array( 'required' => false, 'name' => tra('Content Label'), 'description' => tra('Label of the dynamic content to display.'), 'filter' => 'description', 'default' => '', ), ), ); } function wikiplugin_content( $data, $params, $offset, $parseOptions) { global $dcslib; require_once 'lib/dcs/dcslib.php'; $lang = null; if( isset( $parseOptions['language'] ) ) { $lang = $parseOptions['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); } }