| 1 | 
        
            989
         | 
        
            aldus
         | 
        <?php
  | 
      
      
        | 2 | 
        
            1296
         | 
        
            Luisehahne
         | 
        /**
  | 
      
      
        | 3 | 
        
         | 
        
         | 
         *
  | 
      
      
        | 4 | 
        
         | 
        
         | 
         * @category        module
  | 
      
      
        | 5 | 
        
            1301
         | 
        
            Luisehahne
         | 
         * @package         droplets
  | 
      
      
        | 6 | 
        
            1296
         | 
        
            Luisehahne
         | 
         * @author          Ruud Eisinga (Ruud) John (PCWacht)
  | 
      
      
        | 7 | 
        
         | 
        
         | 
         * @author          WebsiteBaker Project
  | 
      
      
        | 8 | 
        
         | 
        
         | 
         * @copyright       2004-2009, Ryan Djurovich
  | 
      
      
        | 9 | 
        
         | 
        
         | 
         * @copyright       2009-2010, Website Baker Org. e.V.
  | 
      
      
        | 10 | 
        
         | 
        
         | 
         * @link			http://www.websitebaker2.org/
  | 
      
      
        | 11 | 
        
         | 
        
         | 
         * @license         http://www.gnu.org/licenses/gpl.html
  | 
      
      
        | 12 | 
        
         | 
        
         | 
         * @platform        WebsiteBaker 2.8.x
  | 
      
      
        | 13 | 
        
         | 
        
         | 
         * @requirements    PHP 4.4.9 and higher
  | 
      
      
        | 14 | 
        
         | 
        
         | 
         * @version         $Id$
  | 
      
      
        | 15 | 
        
         | 
        
         | 
         * @filesource		$HeadURL$
  | 
      
      
        | 16 | 
        
         | 
        
         | 
         * @lastmodified    $Date$
  | 
      
      
        | 17 | 
        
         | 
        
         | 
         *
  | 
      
      
        | 18 | 
        
         | 
        
         | 
         *	droplets are small codeblocks that are called from anywhere in the template.
  | 
      
      
        | 19 | 
        
         | 
        
         | 
         * 	To call a droplet just use [[dropletname]]. optional parameters for a droplet can be used like [[dropletname?parameter=value¶meter2=value]]\
  | 
      
      
        | 20 | 
        
         | 
        
         | 
         *
  | 
      
      
        | 21 | 
        
            1301
         | 
        
            Luisehahne
         | 
         *  1.0.2, bugfix, Reused the evalDroplet function so the extracted parameters will be only available within the scope of the eval and cleared when ready.
  | 
      
      
        | 22 | 
        
         | 
        
         | 
         *  1.0.3, optimize, reduce memory consumption, increase speed, remove CSS, enable nested droplets
  | 
      
      
        | 23 | 
        
         | 
        
         | 
         *
  | 
      
      
        | 24 | 
        
            1296
         | 
        
            Luisehahne
         | 
         */
  | 
      
      
        | 25 | 
        
            989
         | 
        
            aldus
         | 
        
  | 
      
      
        | 26 | 
        
            1301
         | 
        
            Luisehahne
         | 
        	function do_eval($_x_codedata, $_x_varlist, &$wb_page_data)
  | 
      
      
        | 27 | 
        
         | 
        
         | 
        	{
 | 
      
      
        | 28 | 
        
         | 
        
         | 
        		extract($_x_varlist, EXTR_SKIP);
  | 
      
      
        | 29 | 
        
         | 
        
         | 
        		return(eval($_x_codedata));
  | 
      
      
        | 30 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 31 | 
        
         | 
        
         | 
        
  | 
      
      
        | 32 | 
        
         | 
        
         | 
        	function processDroplets( &$wb_page_data ) {
 | 
      
      
        | 33 | 
        
         | 
        
         | 
        // collect all droplets from document
  | 
      
      
        | 34 | 
        
         | 
        
         | 
        		$droplet_tags = array();
  | 
      
      
        | 35 | 
        
         | 
        
         | 
        		$droplet_replacements = array();
  | 
      
      
        | 36 | 
        
         | 
        
         | 
        		if( preg_match_all( '/\[\[(.*?)\]\]/', $wb_page_data, $found_droplets ) )
  | 
      
      
        | 37 | 
        
         | 
        
         | 
        		{
 | 
      
      
        | 38 | 
        
         | 
        
         | 
        			foreach( $found_droplets[1] as $droplet )
  | 
      
      
        | 39 | 
        
         | 
        
         | 
        			{
 | 
      
      
        | 40 | 
        
         | 
        
         | 
        				if(array_key_exists( '[['.$droplet.']]', $droplet_tags) == false)
  | 
      
      
        | 41 | 
        
         | 
        
         | 
        				{
 | 
      
      
        | 42 | 
        
         | 
        
         | 
        // go in if same droplet with same arguments is not processed already
  | 
      
      
        | 43 | 
        
         | 
        
         | 
        					$varlist = array();
  | 
      
      
        | 44 | 
        
         | 
        
         | 
        // split each droplet command into droplet_name and request_string
  | 
      
      
        | 45 | 
        
         | 
        
         | 
        					$tmp = preg_split('/\?/', $droplet, 2);
 | 
      
      
        | 46 | 
        
         | 
        
         | 
        					$droplet_name = $tmp[0];
  | 
      
      
        | 47 | 
        
         | 
        
         | 
        					$request_string = (isset($tmp[1]) ? $tmp[1] : '');
  | 
      
      
        | 48 | 
        
         | 
        
         | 
        					if( $request_string != '' )
  | 
      
      
        | 49 | 
        
         | 
        
         | 
        					{
 | 
      
      
        | 50 | 
        
         | 
        
         | 
        // make sure we can parse the arguments correctly
  | 
      
      
        | 51 | 
        
         | 
        
         | 
        						$request_string = html_entity_decode($request_string, ENT_COMPAT,DEFAULT_CHARSET);
  | 
      
      
        | 52 | 
        
         | 
        
         | 
        // create array of arguments from query_string
  | 
      
      
        | 53 | 
        
         | 
        
         | 
        						$argv = preg_split( '/&(?!amp;)/', $request_string );
  | 
      
      
        | 54 | 
        
         | 
        
         | 
        						foreach ($argv as $argument)
  | 
      
      
        | 55 | 
        
         | 
        
         | 
        						{
 | 
      
      
        | 56 | 
        
         | 
        
         | 
        // split argument in pair of varname, value
  | 
      
      
        | 57 | 
        
         | 
        
         | 
        							list( $variable, $value ) = explode('=', $argument,2);
 | 
      
      
        | 58 | 
        
         | 
        
         | 
        							if( !empty($value) )
  | 
      
      
        | 59 | 
        
         | 
        
         | 
        							{
 | 
      
      
        | 60 | 
        
         | 
        
         | 
        // re-encode the value and push the var into varlist
  | 
      
      
        | 61 | 
        
         | 
        
         | 
        								$varlist[$variable] = htmlentities($value, ENT_COMPAT,DEFAULT_CHARSET);
  | 
      
      
        | 62 | 
        
         | 
        
         | 
        							}
  | 
      
      
        | 63 | 
        
         | 
        
         | 
        						}
  | 
      
      
        | 64 | 
        
         | 
        
         | 
        					}
  | 
      
      
        | 65 | 
        
            989
         | 
        
            aldus
         | 
        					else
  | 
      
      
        | 66 | 
        
            1301
         | 
        
            Luisehahne
         | 
        					{
 | 
      
      
        | 67 | 
        
         | 
        
         | 
        // no arguments given, so
  | 
      
      
        | 68 | 
        
         | 
        
         | 
        						$droplet_name = $droplet;
  | 
      
      
        | 69 | 
        
         | 
        
         | 
        					}
  | 
      
      
        | 70 | 
        
         | 
        
         | 
        // request the droplet code from database
  | 
      
      
        | 71 | 
        
         | 
        
         | 
        					$sql = 'SELECT `code` FROM `'.TABLE_PREFIX.'mod_droplets` WHERE `name` LIKE "'.$droplet_name.'" AND `active` = 1';
  | 
      
      
        | 72 | 
        
         | 
        
         | 
        					$codedata = $GLOBALS['database']->get_one($sql);
  | 
      
      
        | 73 | 
        
         | 
        
         | 
        					if (!is_null($codedata))
  | 
      
      
        | 74 | 
        
         | 
        
         | 
        					{
 | 
      
      
        | 75 | 
        
         | 
        
         | 
        						$newvalue = do_eval($codedata, $varlist, $wb_page_data);
  | 
      
      
        | 76 | 
        
         | 
        
         | 
        // check returnvalue (must be a string of 1 char at least or (bool)true
  | 
      
      
        | 77 | 
        
         | 
        
         | 
        						if ($newvalue == '' && $newvalue !== true)
  | 
      
      
        | 78 | 
        
         | 
        
         | 
        						{
 | 
      
      
        | 79 | 
        
         | 
        
         | 
        							if(DEBUG === true)
  | 
      
      
        | 80 | 
        
         | 
        
         | 
        							{
 | 
      
      
        | 81 | 
        
         | 
        
         | 
        								$newvalue = '<span class="mod_droplets_err">Error in: '.$droplet.', no valid returnvalue.</span>';
  | 
      
      
        | 82 | 
        
         | 
        
         | 
        							}
  | 
      
      
        | 83 | 
        
         | 
        
         | 
        							else
  | 
      
      
        | 84 | 
        
         | 
        
         | 
        							{
 | 
      
      
        | 85 | 
        
         | 
        
         | 
        								$newvalue = true;
  | 
      
      
        | 86 | 
        
         | 
        
         | 
        							}
  | 
      
      
        | 87 | 
        
         | 
        
         | 
        						}
  | 
      
      
        | 88 | 
        
         | 
        
         | 
        						if ($newvalue === true) { $newvalue = ""; }
 | 
      
      
        | 89 | 
        
         | 
        
         | 
        // remove any defined CSS section from code. For valid XHTML a CSS-section is allowed inside <head>...</head> only!
  | 
      
      
        | 90 | 
        
         | 
        
         | 
        						$newvalue = preg_replace('/<style.*>.*<\/style>/siU', '', $newvalue);
 | 
      
      
        | 91 | 
        
         | 
        
         | 
        // push droplet-tag and it's replacement into Search/Replace array after executing only
  | 
      
      
        | 92 | 
        
         | 
        
         | 
        						$droplet_tags[]         = '[['.$droplet.']]';
  | 
      
      
        | 93 | 
        
         | 
        
         | 
        						$droplet_replacements[] = $newvalue;
  | 
      
      
        | 94 | 
        
         | 
        
         | 
        					}
  | 
      
      
        | 95 | 
        
            989
         | 
        
            aldus
         | 
        				}
  | 
      
      
        | 96 | 
        
            1301
         | 
        
            Luisehahne
         | 
        			}	// End foreach( $found_droplets[1] as $droplet )
  | 
      
      
        | 97 | 
        
         | 
        
         | 
        // replace each Droplet-Tag with coresponding $newvalue
  | 
      
      
        | 98 | 
        
         | 
        
         | 
        			$wb_page_data = str_replace($droplet_tags, $droplet_replacements, $wb_page_data);
  | 
      
      
        | 99 | 
        
            989
         | 
        
            aldus
         | 
        		}
  | 
      
      
        | 100 | 
        
            1301
         | 
        
            Luisehahne
         | 
        // returns TRUE if droplets found in content, FALSE if not
  | 
      
      
        | 101 | 
        
         | 
        
         | 
        		return( count($droplet_tags)!=0 );
  | 
      
      
        | 102 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 103 | 
        
         | 
        
         | 
        
  | 
      
      
        | 104 | 
        
         | 
        
         | 
        	function evalDroplets( &$wb_page_data, $max_loops = 3 ) {
 | 
      
      
        | 105 | 
        
         | 
        
         | 
        		$max_loops = ((int)$max_loops = 0 ? 3 : (int)$max_loops);
  | 
      
      
        | 106 | 
        
         | 
        
         | 
        		while( (processDroplets($wb_page_data) == true) && ($max_loops > 0))
  | 
      
      
        | 107 | 
        
         | 
        
         | 
        		{
 | 
      
      
        | 108 | 
        
         | 
        
         | 
        			$max_loops--;
  | 
      
      
        | 109 | 
        
            989
         | 
        
            aldus
         | 
        		}
  | 
      
      
        | 110 | 
        
            1301
         | 
        
            Luisehahne
         | 
        		return $wb_page_data;
  | 
      
      
        | 111 | 
        
            989
         | 
        
            aldus
         | 
        	}
  | 
      
      
        | 112 | 
        
            1138
         | 
        
            ruud
         | 
        
  | 
      
      
        | 113 | 
        
            989
         | 
        
            aldus
         | 
        ?>
  |