code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
<?php
/**
* Description of TableManager
*
* @author Magno
*/
class TableStringManager {
private $fileString;
private $tablesMeta;
function __construct($fileString) {
$this->fileString = $fileString;
$this->tablesMeta = null;
}
public function getTables(){
... | 0a1b2c3d4e5 | trunk/BloumGenerator/manager/TableStringManager.class.php | PHP | asf20 | 3,566 |
<?php
#if (!function_exists('__autoload')) {
function loadClass($class) {
if (strpos($class,'Generator')) {
require_once("generator/".$class.".class.php");
}else if (strpos($class,'Manager')) {
require_once("manager/".$class.".class.php");
}else if (strpos(... | 0a1b2c3d4e5 | trunk/BloumGenerator/autoload.php | PHP | asf20 | 577 |
<?php
header('Content-type: text/html; charset=utf-8');
include_once 'autoload.php';
include_once 'include/php/Constantes.class.php';
include_once 'include/php/Util.class.php';
$action = new SystemAction();
$action->run();
?>
| 0a1b2c3d4e5 | trunk/BloumGenerator/bloumMvc.php | PHP | asf20 | 238 |
<?php
/**
* jsmin.php - PHP implementation of Douglas Crockford's JSMin.
*
* This is pretty much a direct port of jsmin.c to PHP with just a few
* PHP-specific performance tweaks. Also, whereas jsmin.c reads from stdin and
* outputs to stdout, this library accepts a string as input and returns another
* string a... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/jsmin.php | PHP | asf20 | 6,944 |
// Create new HTML5 elements ===================================================
// -----------------------------------------------------------------------------
// This script should load before any others. We want the new elements to be
// parsed before pretty much anything happens.
// Plus, IE does not behave ot... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/html5.js | JavaScript | asf20 | 1,478 |
/**
* Template JS for standard pages
*/
(function($)
{
/**
* List of functions required to enable template effects/hacks
* @var array
*/
var templateSetup = new Array();
/**
* Add a new template function
* @param function func the function to be called on a jQuery object
* @param bool... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/common.js | JavaScript | asf20 | 27,733 |
/**
* Template JS for standard pages
*/
(function($)
{
// Standard template setup
$.fn.addTemplateSetup(function()
{
// Mini menu
this.find('.mini-menu').css({opacity:0}).parent().hover(function()
{
$(this).children('.mini-menu').stop(true).animate({opacity:1});
}, function()
{
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/standard.js | JavaScript | asf20 | 6,607 |
<?php
/**
* Simple script to combine and compress JS files, to reduce the number of file request the server has to handle.
* For more options/flexibility, see Minify : http://code.google.com/p/minify/
*/
// If no file requested
if (!isset($_GET['files']) or strlen($_GET['files']) == 0)
{
header('Status: 4... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/mini.php | PHP | asf20 | 1,899 |
function abrirModalSimples(conteudo, titulo){
return $.modal({
content: conteudo,
title: titulo,
maxWidth: 500,
maxHeight: 500,
buttons: {
'Fechar': function(win) {win.closeModal();}
}
});
}
function abrirModalConfirmacao(url){
return... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/funcoes.js | JavaScript | asf20 | 1,913 |
/**
* Modal window extension
*/
(function($)
{
/**
* Opens a new modal window
* @param object options an object with any of the following options
* @return object the jQuery object of the new window
*/
$.modal = function(options)
{
var settings = $.extend({}, $.modal.defaults, options),
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/jquery.modal.js | JavaScript | asf20 | 17,761 |
/*!
* jQuery Form Plugin
* version: 2.73 (03-MAY-2011)
* @requires jQuery v1.3.2 or later
*
* Examples and documentation at: http://malsup.com/jquery/form/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
;(functi... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/jquery.form.js | JavaScript | asf20 | 24,105 |
/**
* Older browsers detection
*/
(function($)
{
// Change these values to fit your needs
if (
($.browser.msie && parseFloat($.browser.version) < 7) || // IE 6 and lower
($.browser.mozilla && parseFloat($.browser.version) < 1.9) || // Firefox 2 and lower
($.browser.opera && parseFloat($.browser... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/old-browsers.js | JavaScript | asf20 | 2,231 |
/**
* Lists generic controls
*/
(function($)
{
// List styles setup
$.fn.addTemplateSetup(function()
{
// Closed elements
this.find('.close').toggleBranchOpen().removeClass('close');
// :first-of-type is buggy with jQuery under IE
this.find('dl.accordion dt:first-child + dd').siblings('dd'... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/js/list.js | JavaScript | asf20 | 1,789 |
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty lower modifier plugin
*
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to lowercase
*
* @link http://smarty.php.net/manual/en/language.modifier.lower.php lower (Smarty... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.lower.php | PHP | asf20 | 870 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty capitalize modifier plugin
*
* Type: modifier<br>
* Name: capitalize<br>
* Purpose: capitalize words in the string
*
* @link
* @author Monte Ohrt <monte at ohrt dot com>
* @param string $
* @return... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.capitalize.php | PHP | asf20 | 984 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty count_sentences modifier plugin
*
* Type: modifier<br>
* Name: count_sentences
* Purpose: count the number of sentences in a text
* @link http://smarty.php.net/manual/en/language.modifi... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_sentences.php | PHP | asf20 | 710 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty date_format modifier plugin
*
* Type: modifier<br>
* Name: date_format<br>
* Purpose: format datestamps via strftime<br>
* Input:<br>
* - string: input date string
* - format: strftime ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.date_format.php | PHP | asf20 | 1,976 |
<?php
/**
* Smarty plugin to format text blocks
*
* @package Smarty
* @subpackage PluginsBlock
*/
/**
* Smarty {textformat}{/textformat} block plugin
*
* Type: block function<br>
* Name: textformat<br>
* Purpose: format text a certain way with preset styles
* or custom wrap/indent setti... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/block.textformat.php | PHP | asf20 | 2,930 |
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {counter} function plugin
*
* Type: function<br>
* Name: counter<br>
* Purpose: print out a counter value
* @author Monte Ohrt <monte at ohrt dot com>
* @link http://smarty.php.net/manual/en/language.function.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.counter.php | PHP | asf20 | 1,797 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {popup_init} function plugin
*
* Type: function<br>
* Name: popup_init<br>
* Purpose: initialize overlib
* @link http://smarty.php.net/manual/en/language.function.popup.init.php {popup_init}
* ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.popup_init.php | PHP | asf20 | 1,032 |
<?php
/**
* Smarty shared plugin
*
* @package Smarty
* @subpackage PluginsShared
*/
/**
* Function: smarty_make_timestamp<br>
* Purpose: used by other smarty functions to make a timestamp
* from a string.
* @author Monte Ohrt <monte at ohrt dot com>
* @param string $string
* @return string
*/
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/shared.make_timestamp.php | PHP | asf20 | 1,221 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty wordwrap modifier plugin
*
* Type: modifier<br>
* Name: wordwrap<br>
* Purpose: wrap a string of text at a given length
*
* @link http://smarty.php.net/manual/en/language.modifier.w... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.wordwrap.php | PHP | asf20 | 845 |
<?php
/**
* Smarty plugin to execute PHP code
*
* @package Smarty
* @subpackage PluginsBlock
* @author Uwe Tews
*/
/**
* Smarty {php}{/php} block plugin
*
* @param string $content contents of the block
* @param object $template template object
* @param boolean $ &$repeat repeat flag
* @return string con... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/block.php.php | PHP | asf20 | 589 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty strip modifier plugin
*
* Type: modifier<br>
* Name: strip<br>
* Purpose: Replace all repeated spaces, newlines, tabs
* with a single space or supplied replacement string.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.strip.php | PHP | asf20 | 820 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty strip_tags modifier plugin
*
* Type: modifier<br>
* Name: strip_tags<br>
* Purpose: strip html tags from text
*
* @link http://smarty.php.net/manual/en/language.modifier.strip.tags.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.strip_tags.php | PHP | asf20 | 773 |
<?php
/**
* Smarty plugin
*
* This plugin is only for Smarty2 BC
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {math} function plugin
*
* Type: function<br>
* Name: math<br>
* Purpose: handle math computations in template<br>
* @link http://smarty.php.net/manual/en/language.funct... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.math.php | PHP | asf20 | 2,715 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_options} function plugin
*
* Type: function<br>
* Name: html_options<br>
* Purpose: Prints the list of <option> tags generated from
* the passed parameters
*
* @link http://smarty.php.n... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_options.php | PHP | asf20 | 3,708 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage Debug
*/
/**
* Smarty debug_print_var modifier plugin
*
* Type: modifier<br>
* Name: debug_print_var<br>
* Purpose: formats variable contents for display in the console
*
* @link http://smarty.php.net/manual/en/language.modifier.debug.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.debug_print_var.php | PHP | asf20 | 2,840 |
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty spacify modifier plugin
*
* Type: modifier<br>
* Name: spacify<br>
* Purpose: add spaces between characters in a string
*
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.spacify.php | PHP | asf20 | 1,029 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty escape modifier plugin
*
* Type: modifier<br>
* Name: escape<br>
* Purpose: escape string for output
*
* @link http://smarty.php.net/manual/en/language.modifier.count.characters.php count_characters (Sm... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.escape.php | PHP | asf20 | 3,813 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty default modifier plugin
*
* Type: modifier<br>
* Name: default<br>
* Purpose: designate default value for empty variables
*
* @link http://smarty.php.net/manual/en/language.modifier... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.default.php | PHP | asf20 | 822 |
<?php
// <button class="grey" type="button"></button>
function smarty_function_action_button($params, $template) {
$label = isset ($params['label']) ? $params['label'] : '';
$acao = isset ($params['action']) ? trim($params['action']) : '';
$class = isset ($params['class']) ? trim($params['cla... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.action_button.php | PHP | asf20 | 1,014 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_checkboxes} function plugin
*
* File: function.html_checkboxes.php<br>
* Type: function<br>
* Name: html_checkboxes<br>
* Date: 24.Feb.2003<br>
* Purpose: Prints out a list of checkb... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_checkboxes.php | PHP | asf20 | 4,413 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
*
* Type: modifier<br>
* Name: noprint<br>
* Purpose: return an empty string
* @author Uwe Tews
* @param array $params parameters
* @return string with com... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.noprint.php | PHP | asf20 | 427 |
<?php
/**
* Smarty shared plugin
*
* @package Smarty
* @subpackage PluginsShared
*/
/**
* escape_special_chars common function
*
* Function: smarty_function_escape_special_chars<br>
* Purpose: used by other smarty functions to escape
* special chars except for already escaped ones
* @author Mon... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/shared.escape_special_chars.php | PHP | asf20 | 754 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_select_time} function plugin
*
* Type: function<br>
* Name: html_select_time<br>
* Purpose: Prints the dropdowns for time selection
*
* @link http://smarty.php.net/manual/en/language.function.html.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_select_time.php | PHP | asf20 | 6,405 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_image} function plugin
*
* Type: function<br>
* Name: html_image<br>
* Date: Feb 24, 2003<br>
* Purpose: format HTML tags for the image<br>
* Examples: {html_image file="/images/masthead.gif"}
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_image.php | PHP | asf20 | 4,461 |
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty replace modifier plugin
*
* Type: modifier<br>
* Name: replace<br>
* Purpose: simple search/replace
*
* @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual)
* @... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.replace.php | PHP | asf20 | 1,553 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_select_date} plugin
*
* Type: function<br>
* Name: html_select_date<br>
* Purpose: Prints the dropdowns for date selection.
*
* ChangeLog:<br>
* - 1.0 initial release
* - 1.... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_select_date.php | PHP | asf20 | 11,433 |
<?php
/** <p>
<label for="field1">Default block label</label>
<input type="text" id="field1" name="field1"/>
</p>
* **/
function smarty_function_form_input($params, $template) {
$required = isset ($params['required']) ? $params['required'] : false;
$label = isset ($params['label']) ? $pa... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.form_input.php | PHP | asf20 | 1,118 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFilter
*/
/**
* Smarty trimwhitespace outputfilter plugin
*
* File: outputfilter.trimwhitespace.php<br>
* Type: outputfilter<br>
* Name: trimwhitespace<br>
* Date: Jan 25, 2003<br>
* Purpose: trim leading white space and bl... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/outputfilter.trimwhitespace.php | PHP | asf20 | 2,754 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty truncate modifier plugin
*
* Type: modifier<br>
* Name: truncate<br>
* Purpose: Truncate a string to a certain length if necessary,
* optionally splitting in the middle of a word, and
* ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.truncate.php | PHP | asf20 | 2,255 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* Smarty regex_replace modifier plugin
*
* Type: modifier<br>
* Name: regex_replace<br>
* Purpose: regular expression search/replace
* @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php
* ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifier.regex_replace.php | PHP | asf20 | 1,237 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty upper modifier plugin
*
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to uppercase
*
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Sm... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.upper.php | PHP | asf20 | 824 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty string_format modifier plugin
*
* Type: modifier<br>
* Name: string_format<br>
* Purpose: format strings via sprintf
*
* @link http://smarty.php.net/manual/en/language.modifier.str... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.string_format.php | PHP | asf20 | 615 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {popup} function plugin
*
* Type: function<br>
* Name: popup<br>
* Purpose: make text pop up in windows via overlib
* @link http://smarty.php.net/manual/en/language.function.popup.php {popup}
* (Sm... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.popup.php | PHP | asf20 | 3,341 |
<?php
function smarty_function_display_errors($params, $template) {
$errors = isset ($params['errors']) ? $params['errors'] : null;
$autoClose = isset ($params['autoClose']) ? $params['autoClose'] : false;
if($errors == null || count($errors) <= 0) return '';
$div = ""; $script = "";
if($auto... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.display_errors.php | PHP | asf20 | 1,491 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty count_characters modifier plugin
*
* Type: modifier<br>
* Name: count_characteres<br>
* Purpose: count the number of characters in a text
*
* @link http://smarty.php.net/manual/en/l... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_characters.php | PHP | asf20 | 1,405 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty cat modifier plugin
*
* Type: modifier<br>
* Name: cat<br>
* Date: Feb 24, 2003
* Purpose: catenate a value to a variable
* Input: string to catenate
* Example: {$var|cat:"f... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.cat.php | PHP | asf20 | 649 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {fetch} plugin
*
* Type: function<br>
* Name: fetch<br>
* Purpose: fetch file, web or ftp data and display results
* @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch}
* (Smarty... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.fetch.php | PHP | asf20 | 8,557 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {mailto} function plugin
*
* Type: function<br>
* Name: mailto<br>
* Date: May 21, 2002
* Purpose: automate mailto address link creation, and optionally
* encode them.<br>
*
* Examples:
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.mailto.php | PHP | asf20 | 5,341 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFilter
*/
/**
* Smarty htmlspecialchars variablefilter plugin
*
* @param string $source input string
* @param object $ &$smarty Smarty object
* @return string filtered output
*/
function smarty_variablefilter_htmlspecialchars($source, $sm... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/variablefilter.htmlspecialchars.php | PHP | asf20 | 384 |
<?php
/** MODELO PADRAO
<p class="message error"></p>
/**
* MODELO MENOR
*
* <p class="message error"></p>
*
*/
function smarty_function_msg($params, $template) {
$obj = isset ($params['obj']) ? $params['obj'] : null;
$tam = isset ($params['tam']) ? $params[... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.msg.php | PHP | asf20 | 1,263 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {cycle} function plugin
*
* Type: function<br>
* Name: cycle<br>
* Date: May 3, 2002<br>
* Purpose: cycle through given values<br>
* Input:
* - name = name of cycle (optional)
* - valu... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.cycle.php | PHP | asf20 | 3,318 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_radios} function plugin
*
* File: function.html_radios.php<br>
* Type: function<br>
* Name: html_radios<br>
* Date: 24.Feb.2003<br>
* Purpose: Prints out a list of radio input type... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_radios.php | PHP | asf20 | 4,894 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty count_paragraphs modifier plugin
*
* Type: modifier<br>
* Name: count_paragraphs<br>
* Purpose: count the number of paragraphs in a text
* @link http://smarty.php.net/manual/en/language... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_paragraphs.php | PHP | asf20 | 696 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty count_words modifier plugin
*
* Type: modifier<br>
* Name: count_words<br>
* Purpose: count the number of words in a text
*
* @link http://smarty.php.net/manual/en/language.modifie... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_words.php | PHP | asf20 | 914 |
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_table} function plugin
*
* Type: function<br>
* Name: html_table<br>
* Date: Feb 17, 2003<br>
* Purpose: make an html table from an array of data<br>
*
*
* Examples:
* <pre>
* {table loop=... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/function.html_table.php | PHP | asf20 | 5,465 |
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty indent modifier plugin
*
* Type: modifier<br>
* Name: indent<br>
* Purpose: indent lines of text
* @link http://smarty.php.net/manual/en/language.modifier.indent.php
* indent (Sm... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.indent.php | PHP | asf20 | 754 |
<?php
/**
* Project: Smarty: the PHP compiling template engine
* File: Smarty.class.php
* SVN: $Id: Smarty.class.php 3845 2010-12-05 17:21:02Z uwe.tews@googlemail.com $
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Publ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/Smarty.class.php | PHP | asf20 | 27,805 |
{capture name='_smarty_debug' assign=debug_output}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Smarty Debug Console</title>
<style type="text/css">
{literal}
body, h1, h2, td, th, p {
fo... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/debug.tpl | Smarty | asf20 | 2,827 |
<?php
/**
* Smarty Internal Plugin Debug
*
* Class to collect data for the Smarty Debugging Consol
*
* @package Smarty
* @subpackage Debug
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Debug Class
*/
class Smarty_Internal_Debug extends Smarty_Internal_Data {
// template data
static $template_data = array();
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_debug.php | PHP | asf20 | 4,580 |
<?php
/**
* Smarty Internal Plugin Compile Modifier
*
* Compiles code for modifier execution
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Modifier Class
*/
class Smarty_Internal_Compile_Private_Modifier extends Smarty_Internal_CompileB... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_modifier.php | PHP | asf20 | 2,992 |
<?php
/**
* Smarty Internal Plugin Compile Rdelim
*
* Compiles the {rdelim} tag
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Rdelim Class
*/
class Smarty_Internal_Compile_Rdelim extends Smarty_Internal_CompileBase {
/**
* Compiles code for the... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_rdelim.php | PHP | asf20 | 1,005 |
<?php
/**
* Smarty Internal Plugin Resource Stream
*
* Implements the streams as resource for Smarty template
*
* @package Smarty
* @subpackage TemplateResources
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Resource Stream
*/
class Smarty_Internal_Resource_Stream {
public function __construct(... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_stream.php | PHP | asf20 | 2,619 |
<?php
/**
* Smarty Internal Plugin Compile Eval
*
* Compiles the {eval} tag
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Eval Class
*/
class Smarty_Internal_Compile_Eval extends Smarty_Internal_CompileBase {
public $required_attributes = array('var... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_eval.php | PHP | asf20 | 1,587 |
<?php
/**
* Smarty Internal Plugin Compile Nocache
*
* Compiles the {nocache} {/nocache} tags
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Nocache Class
*/
class Smarty_Internal_Compile_Nocache extends Smarty_Internal_CompileBase {
/**
* Compi... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_nocache.php | PHP | asf20 | 1,860 |
<?php
/**
* Smarty Internal Plugin Template
*
* This file contains the Smarty template engine
*
* @package Smarty
* @subpackage Templates
* @author Uwe Tews
*/
/**
* Main class with template data structures and methods
*/
class Smarty_Internal_Template extends Smarty_Internal_Data {
// object cache
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_template.php | PHP | asf20 | 42,109 |
<?php
/**
* Smarty Internal Plugin Compile Function Plugin
*
* Compiles code for the execution of function plugin
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Function Plugin Class
*/
class Smarty_Internal_Compile_Private_Function_Plugin extends Sma... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php | PHP | asf20 | 1,804 |
<?php
/**
* Smarty Internal Plugin CacheResource File
*
* Implements the file system as resource for the HTML cache
* Version ussing nocache inserts
*
* @package Smarty
* @subpackage Cacher
* @author Uwe Tews
*/
/**
* This class does contain all necessary methods for the HTML cache on file system
*/
cla... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_cacheresource_file.php | PHP | asf20 | 7,905 |
<?php
/**
* Smarty Internal Plugin Filter Handler
*
* Smarty filter handler class
*
* @package Smarty
* @subpackage PluginsInternal
* @author Uwe Tews
*/
/**
* Class for filter processing
*/
class Smarty_Internal_Filter_Handler {
/**
* Run filters over content
*
* The filters will be ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_filter_handler.php | PHP | asf20 | 2,717 |
<?php
/**
* Smarty Internal Plugin Templateparser
*
* This is the template parser.
* It is generated from the internal.templateparser.y file
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
class TP_yyToken implements ArrayAccess
{
public $string = '';
public $metadata = array();
function __... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_templateparser.php | PHP | asf20 | 167,482 |
<?php
/**
* Smarty Internal Plugin Compile Object Funtion
*
* Compiles code for registered objects as function
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Object Function Class
*/
class Smarty_Internal_Compile_Private_Object_Function extends Smarty... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_object_function.php | PHP | asf20 | 2,440 |
<?php
/**
* Smarty Internal Plugin Resource String
*
* Implements the strings as resource for Smarty template
*
* @package Smarty
* @subpackage TemplateResources
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Resource String
*/
class Smarty_Internal_Resource_String {
public function __construct(... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_string.php | PHP | asf20 | 3,860 |
<?php
/**
* Smarty Internal Plugin Compile Registered Function
*
* Compiles code for the execution of a registered function
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Registered Function Class
*/
class Smarty_Internal_Compile_Privat... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_registered_function.php | PHP | asf20 | 2,416 |
<?php
/**
* Smarty Internal Plugin Compile Print Expression
*
* Compiles any tag which will output an expression or variable
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Print Expression Class
*/
class Smarty_Internal_Compile_Private_Print_Expressio... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_print_expression.php | PHP | asf20 | 3,069 |
<?php
/**
* Smarty Internal Plugin Compile Section
*
* Compiles the {section} {sectionelse} {/section} tags
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Section Class
*/
class Smarty_Internal_Compile_Section extends Smarty_Internal_CompileBase {
//... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_section.php | PHP | asf20 | 6,931 |
<?php
/**
* Smarty Internal Plugin Function Call Handler
*
* @package Smarty
* @subpackage PluginsInternal
* @author Uwe Tews
*/
/**
* This class does call function defined with the {function} tag
*/
class Smarty_Internal_Function_Call_Handler extends Smarty_Internal_Template {
static functi... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_function_call_handler.php | PHP | asf20 | 1,935 |
<?php
/**
* Project: Smarty: the PHP compiling template engine
* File: smarty_internal_utility.php
* SVN: $Id: $
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundati... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_utility.php | PHP | asf20 | 11,821 |
<?php
/**
* Smarty Internal Plugin Configfilelexer
*
* This is the lexer to break the config file source into tokens
* @package Smarty
* @subpackage Config
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Configfilelexer
*/
class Smarty_Internal_Configfilelexer
{
public $data;
public $counter;
public ... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_configfilelexer.php | PHP | asf20 | 17,833 |
<?php
/**
* Smarty write file plugin
*
* @package Smarty
* @subpackage PluginsInternal
* @author Monte Ohrt
*/
/**
* Smarty Internal Write File Class
*/
class Smarty_Internal_Write_File {
/**
* Writes file in a save way to disk
*
* @param string $_filepath complete filepath
* @param... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_write_file.php | PHP | asf20 | 1,466 |
<?php
/**
* Smarty Internal Plugin Resource Eval
*
* Implements the strings as resource for Smarty template
*
* @package Smarty
* @subpackage TemplateResources
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Resource Eval
*/
class Smarty_Internal_Resource_Eval {
public function __... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_eval.php | PHP | asf20 | 2,383 |
<?php
/**
* Smarty Internal Plugin Compile Block
*
* Compiles the {block}{/block} tags
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Block Class
*/
class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase {
// attribute definitions
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_block.php | PHP | asf20 | 8,490 |
<?php
/**
* Smarty Internal Plugin Config File Compiler
*
* This is the config file compiler class. It calls the lexer and parser to
* perform the compiling.
*
* @package Smarty
* @subpackage Config
* @author Uwe Tews
*/
/**
* Main config file compiler class
*/
class Smarty_Internal_Config_File_Compile... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_config_file_compiler.php | PHP | asf20 | 4,042 |
<?php
/**
* Smarty Internal Plugin Compile Special Smarty Variable
*
* Compiles the special $smarty variables
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile special Smarty Variable Class
*/
class Smarty_Internal_Compile_Private_Special_Variable extend... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_special_variable.php | PHP | asf20 | 3,589 |
<?php
/**
* Smarty Internal Plugin Compile For
*
* Compiles the {for} {forelse} {/for} tags
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile For Class
*/
class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase {
/**
* Compiles cod... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_for.php | PHP | asf20 | 6,210 |
<?php
/**
* Smarty Internal Plugin Templateparser Parsetrees
*
* These are classes to build parsetrees in the template parser
*
* @package Smarty
* @subpackage Compiler
* @author Thue Kristensen
* @author Uwe Tews
*/
abstract class _smarty_parsetree {
abstract public function to_smarty_php... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_parsetree.php | PHP | asf20 | 7,030 |
<?php
/**
* Smarty Internal Plugin Smarty Template Compiler Base
*
* This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Main compiler class
*/
class Smarty_Internal_Template... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_templatecompilerbase.php | PHP | asf20 | 21,276 |
<?php
/**
* Smarty Internal Plugin Resource Extends
*
* Implements the file system as resource for Smarty which does extend a chain of template files templates
*
* @package Smarty
* @subpackage TemplateResources
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Resource Extends
*/
class Smarty_Internal_... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_extends.php | PHP | asf20 | 6,616 |
<?php
/**
* Smarty Internal Plugin Compile Capture
*
* Compiles the {capture} tag
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Capture Class
*/
class Smarty_Internal_Compile_Capture extends Smarty_Internal_CompileBase {
// attribute definitions
... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_capture.php | PHP | asf20 | 2,528 |
<?php
/**
* Smarty Internal Plugin Compile Ldelim
*
* Compiles the {ldelim} tag
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Ldelim Class
*/
class Smarty_Internal_Compile_Ldelim extends Smarty_Internal_CompileBase {
/**
* Compiles code for the... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_ldelim.php | PHP | asf20 | 1,004 |
<?php
/**
* Smarty Internal Plugin Compile Config Load
*
* Compiles the {config load} tag
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Config Load Class
*/
class Smarty_Internal_Compile_Config_Load extends Smarty_Internal_CompileBase {
// attribut... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_config_load.php | PHP | asf20 | 1,995 |
<?php
/**
* Smarty Internal Plugin Compile Debug
*
* Compiles the {debug} tag
* It opens a window the the Smarty Debugging Console
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Debug Class
*/
class Smarty_Internal_Compile_Debug extends Smarty_Internal_... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_debug.php | PHP | asf20 | 1,004 |
<?php
/**
* Smarty Internal Plugin Compile Continue
*
* Compiles the {continue} tag
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Continue Class
*/
class Smarty_Internal_Compile_Continue extends Smarty_Internal_CompileBase {
// attrib... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_continue.php | PHP | asf20 | 2,152 |
<?php
/**
* Smarty Internal Plugin Filter
*
* External Smarty filter methods
*
* @package Smarty
* @author Uwe Tews
*/
/**
* Class for filter methods
*/
class Smarty_Internal_Filter {
function __construct($smarty)
{
$this->smarty = $smarty;
}
/**
* Registers a filter functio... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_filter.php | PHP | asf20 | 2,137 |
<?php
/**
* Smarty Internal Plugin Smarty Template Compiler Base
*
* This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
require_once("smarty_internal_parsetree.php");
/**
* Class SmartyTemplat... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php | PHP | asf20 | 2,526 |
<?php
/**
* Smarty Internal Plugin Compile Function
*
* Compiles the {function} {/function} tags
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Function Class
*/
class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase {
// attribut... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_function.php | PHP | asf20 | 6,137 |
<?php
/**
* Smarty Internal Plugin Compile Include
*
* Compiles the {include} tag
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Include Class
*/
class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
// caching mode to create n... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_include.php | PHP | asf20 | 8,609 |
<?php
/**
* Smarty Internal Plugin Compile Block Plugin
*
* Compiles code for the execution of block plugin
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Block Plugin Class
*/
class Smarty_Internal_Compile_Private_Block_Plugin extends Smarty_Internal... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php | PHP | asf20 | 3,264 |
<?php
/**
* Smarty Internal Plugin Data
*
* This file contains the basic classes and methodes for template and variable creation
*
* @package Smarty
* @subpackage Templates
* @author Uwe Tews
*/
/**
* Base class with template and variable methodes
*/
class Smarty_Internal_Data {
// class used for tem... | 0a1b2c3d4e5 | trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_data.php | PHP | asf20 | 15,534 |