0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_fancylist.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_fancylist.php 33567 2011-03-21 19:01:07Z lphuberdeau $ function wikiplugin_fancylist_info() { return array( 'name' => tra('Fancy List'), 'documentation' => 'PluginFancyList', 'description' => tra('Create a fancy-looking list'), 'prefs' => array('wikiplugin_fancylist'), 'body' => tra('One item per line starting with anything followed by ")".'), 'icon' => 'pics/icons/text_list_bullets.png', 'params' => array( 'div' => array( 'required' => false, 'name' => tra('Use Div'), 'description' => tra('Use the HTML tag div instead of the HTML tag for lists (ol)'), 'default' => '', 'options' => array( array('text' => '', 'value' => ''), array('text' => tra('Yes'), 'value' => 1), array('text' => tra('No'), 'value' => 0) ), ), 'class' => array( 'required' => false, 'name' => tra('Class'), 'description' => tra('CSS class for the fancylist'), 'default' => '', ), ), ); } function wikiplugin_fancylist($data, $params) { global $tikilib; global $replacement; if (isset($params)){ extract ($params,EXTR_SKIP); } if(isset($div)){ $result = '<div class="fancylist'.($class ? " $class" : "").'">'; $count=1; }else{ $result = '<ol class="fancylist'.(isset($class) ? " $class" : "").'">'; } // split data by lines (trimed whitespace from start and end) $lines = preg_split("/\n/", trim($data)); foreach ($lines as $line) { // replace all before and including the ")" $part = preg_replace("/[\w]+\)(.*)/", "$1", $line); if(isset($div)){ $result .= '<div><span class='.count.'>'.$count.'</span><p>' . $part . '</p></div>'; $count++; }else{ $result .= '<li><p>' . $part . '</p></li>'; } } if(isset($div)){ $result .= '</div>'; }else{ $result .= '</ol>'; } return $result; }