DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:hidetext

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:hidetext [2009-09-30 22:51] – added similar plugins and tags achplugin:hidetext [2020-07-17 00:51] (current) florious
Line 1: Line 1:
-====== hidetext plugin ======+====== hidetext Plugin ======
  
 ---- plugin ---- ---- plugin ----
-description: for hiding big text+description: For hiding big text
 author     : Dmitry A. Vinogradov author     : Dmitry A. Vinogradov
 email      : vshekun@gmail.com email      : vshekun@gmail.com
 type       : Syntax type       : Syntax
-lastupdate : 2009-09-28+lastupdate : 2019-09-02
 compatible : 2009-02-14b compatible : 2009-02-14b
 depends    :  depends    : 
Line 17: Line 17:
  
 ===== Usage ===== ===== Usage =====
 +
 **<hidetext** [some text]**>** //Bla-bla-bla// **</hidetext>** **<hidetext** [some text]**>** //Bla-bla-bla// **</hidetext>**
  
Line 28: Line 29:
   <hidetext> This text is hidden </hidetext>     <hidetext> This text is hidden </hidetext>  
 Result: __> > >__ Result: __> > >__
- 
  
 ===== Installation ===== ===== Installation =====
 +
 Create a new directory hidetext inside your lib/plugins/ directory, and then copy the following source into syntax.php in that directory (/lib/plugins/hidetext/syntax.php):  Create a new directory hidetext inside your lib/plugins/ directory, and then copy the following source into syntax.php in that directory (/lib/plugins/hidetext/syntax.php): 
  
-<code php>+ 
 +**For PHP 7:** 
 +<code php /hidetext/syntax.php> 
 +<?php 
 +/** 
 + * Plugin HideText: hiding big text <hidetext></hidetext> 
 + * @license    GPL2 (http://www.gnu.org/licenses/gpl.html) 
 + * @author     Dmitry A. Vinogradov <vshekun@gmail.com> 
 + * Updated     Florin Chitiul, 2019-09-02 
 + * Format: <hidetext [some text]> Bla-bla-bla </hidetext> 
 + * Examples: <hidetext info> This text is hidden </hidetext> 
 +           <hidetext> This text is hidden </hidetext>  
 + */ 
 +  
 +if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/'); 
 +if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 
 +require_once(DOKU_PLUGIN.'syntax.php'); 
 +  
 +  
 +/** 
 + * All DokuWiki plugins to extend the parser/rendering mechanism 
 + * need to inherit from this class 
 + */ 
 +class syntax_plugin_hidetext extends DokuWiki_Syntax_Plugin { 
 +  
 +    /** 
 +     * return some info 
 +     */ 
 +    function getInfo(){ 
 +        return array( 
 +            'author' => 'Dmitry A. Vinogradov', 
 +            'email'  => 'vshekun@gmail.com', 
 +            'date'   => '2009-09-28', 
 +            'name'   => 'HideText', 
 +            'desc'   => 'for hiding big text', 
 +            'url'    => 'http://www.dokuwiki.org/plugin:hidetext', 
 +        ); 
 +    } 
 +  
 +    /** 
 +     * What kind of syntax are we? 
 +     */ 
 +    function getType(){ 
 +        return 'formatting'; 
 +    } 
 +   function getAllowedTypes() {  
 +      return array('container', 'formatting', 'substition', 'disabled', 'protected');  
 +      
 +  
 +    /** 
 +     * Where to sort in? 
 +     */  
 +    function getSort(){ 
 +        return 201; 
 +    } 
 +  
 +    /** 
 +     * Connect pattern to lexer 
 +     */ 
 +    function connectTo($mode) { 
 +        $this->Lexer->addEntryPattern('<hidetext *[^>]*>',$mode,'plugin_hidetext'); 
 +    } 
 +  
 +    function postConnect() { 
 +        $this->Lexer->addExitPattern('</hidetext>','plugin_hidetext'); 
 +    } 
 +  
 +    /** 
 +     * Handle the match 
 +     */ 
 +    function handle($match, $state, $pos, Doku_Handler $handler){ 
 +        switch ($state) { 
 +            case DOKU_LEXER_ENTER :  
 +            return array($state, substr($match, 9, -1) ); 
 +            break; 
 +            case DOKU_LEXER_UNMATCHED : 
 +                return array($state, $match); 
 +            break; 
 +            case DOKU_LEXER_EXIT : 
 +                return array($state, ''); 
 +            break; 
 +        } 
 +        return array(); 
 +    } 
 +  
 +    /** 
 +     * Create output 
 +     */ 
 +    function render($mode, Doku_Renderer $renderer, $data) { 
 +        if($mode == 'xhtml'){ 
 +  
 +           list($state, $match) = $data; 
 +            switch ($state) { 
 +                case DOKU_LEXER_ENTER :     
 +                    if ( $match == "" ) $match = '>>>'; 
 +                    $id = "hidetext".rand(100,500); 
 +                    $renderer->doc .= "<span style=\"cursor:pointer;text-decoration: underline;\" onClick=\"with( document.getElementById('$id').style ){if ( display == 'block' ){ display = 'none' } else { display = 'block' };}\">"; 
 +                    $renderer->doc .= $match; 
 +                    $renderer->doc .= "</span>"; 
 +                    $renderer->doc .= "<div id='$id' style=\"display: hide;\">"; 
 +                    $renderer->doc .= "<script type=\"text/javascript\">document.getElementById('$id').style.display='none';</script>"; 
 +                    break; 
 +                case DOKU_LEXER_UNMATCHED : 
 +                    $renderer->doc .= $renderer->_xmlEntities($match); 
 +                    break; 
 +                case DOKU_LEXER_EXIT : 
 +                    $renderer->doc .= "</div>"; 
 +                    break; 
 +            } 
 +            return true; 
 +        } 
 +        return false; 
 +    } 
 +
 +?> 
 +</code> 
 + 
 +\\ 
 +\\ 
 + 
 +**For PHP 5 and 6:** 
 +<code php /hidetext/syntax.php>
 <?php <?php
 /** /**
Line 66: Line 188:
             'date'   => '2009-09-28',             'date'   => '2009-09-28',
             'name'   => 'HideText',             'name'   => 'HideText',
-            'desc'   => 'for hiding big text', +            'desc'   => 'For hiding big text', 
-            'url'    => 'http://www.dokuwiki.org/plugin:hidetext',+            'url'    => 'https://www.dokuwiki.org/plugin:hidetext',
         );         );
     }     }
Line 78: Line 200:
     }     }
    function getAllowedTypes() {     function getAllowedTypes() { 
-      return array('container', 'formatting', 'substition', 'disabled'); +      return array('container', 'formatting', 'substition', 'disabled', 'protected'); 
            
    
Line 146: Line 268:
     }     }
 } }
-?> 
 </code> </code>
  
plugin/hidetext.1254343904.txt.gz · Last modified: 2009-09-30 22:51 by ach

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki