CODE STYLE gulliver/system/

files modified:    class.filterForm.php
                    class.publisher.php
                    class.xmlform.php
                    class.ymlDomain.php
This commit is contained in:
Ralph Asendeteufrer
2012-10-17 18:15:15 -04:00
parent fb28adbe7f
commit 05758ea812
4 changed files with 5570 additions and 5175 deletions

View File

@@ -1,11 +1,13 @@
<?php <?php
/** /**
* class.filterForm.php * class.filterForm.php
* @package gulliver.system *
* * @package gulliver.system
*
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2011 Colosa Inc. * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the * published by the Free Software Foundation, either version 3 of the
@@ -13,39 +15,44 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
* *
*/ */
/** /**
*
* @package gulliver.system * @package gulliver.system
**/ *
*/
class filterForm extends form class filterForm extends form
{ {
var $cols = 3; public $cols = 3;
var $type = 'filterform'; public $type = 'filterform';
var $ajaxServer = '../gulliver/pagedTableAjax'; public $ajaxServer = '../gulliver/pagedTableAjax';
/** /**
* this function is putting the filters * this function is putting the filters
* @author *
* * @author
* @access public *
* @param string $template *
* @param string $scriptContent * @access public
* @return string * @param string $template
*/ * @param string $scriptContent
function render( $template, &$scriptContent ) * @return string
{ */
$this->cols=intVal($this->cols); public function render ($template, &$scriptContent)
return parent::render( $template, $scriptContent ); {
} $this->cols = intVal( $this->cols );
} return parent::render( $template, $scriptContent );
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,11 +1,12 @@
<?php <?php
/** /**
* class.ymlDomain.php * class.ymlDomain.php
* @package gulliver.system *
* @package gulliver.system
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2011 Colosa Inc. * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the * published by the Free Software Foundation, either version 3 of the
@@ -13,288 +14,283 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
* *
*/ */
/** /**
*
* @package gulliver.system * @package gulliver.system
*/ *
require_once( PATH_THIRDPARTY.'lime/yaml.class.php'); */
require_once (PATH_THIRDPARTY . 'lime/yaml.class.php');
/** /**
* ymlDomain class * ymlDomain class
*
* @copyright (C) 2002 by Colosa Development Team. * @copyright (C) 2002 by Colosa Development Team.
* @package gulliver.system * @package gulliver.system
*/ */
class ymlDomain class ymlDomain
{ {
var $global; public $global;
/**
* function ymlDomain
*
* @access public
* @return void
*/
function ymlDomain()
{
$this->global = sfYAML::Load( PATH_FIXTURES . 'domain.yml');
}
/**
* function addDomain
*
* @access public
* @param string $domainName
* @return boolean
*/
function addDomain( $domainName )
{
$keys = $this->name2keys( $domainName );
$currDomain =& $this->global;
$i=0;
for($i=0;$i<count($keys);$i++){
if (is_array($currDomain)){
if (!isset($currDomain[$keys[$i]])) $currDomain[$keys[$i]] = array();
$currDomain =& $currDomain[$keys[$i]];
}
else{
trigger_error( "Operation not possible: Subdomain is not present $domainName" , E_USER_ERROR );
return FALSE;
}
}
return TRUE;
}
/** /**
* function addDomainValue * function ymlDomain
* *
* @access public * @access public
* @param string $domainName * @return void
* @param string $value */
* @return boolean public function ymlDomain ()
*/ {
function addDomainValue( $domainName , $value ) $this->global = sfYAML::Load( PATH_FIXTURES . 'domain.yml' );
{
$keys = $this->name2keys( $domainName );
$currDomain =& $this->global;
$i=0;
for($i=0;$i<count($keys);$i++){
if (is_array($currDomain)){
$currDomain =& $currDomain[$keys[$i]];
}
else{
trigger_error( "Operation not possible: Subdomain is not present $domainName" , E_USER_ERROR );
return FALSE;
}
} }
$currDomain[]=$value;
return TRUE; /**
} * function addDomain
*
/** * @access public
* function exists * @param string $domainName
* * @return boolean
* @access public */
* @param string $domainName public function addDomain ($domainName)
* @return boolean {
*/ $keys = $this->name2keys( $domainName );
function exists( $domainName ) $currDomain = & $this->global;
{ $i = 0;
$keys = $this->name2keys( $domainName ); for ($i = 0; $i < count( $keys ); $i ++) {
$currDomain =& $this->global; if (is_array( $currDomain )) {
$i=0; if (! isset( $currDomain[$keys[$i]] )) {
for($i=0;$i<count($keys);$i++){ $currDomain[$keys[$i]] = array ();
if (is_array($currDomain) && isset($currDomain[$keys[$i]]) ){ }
$currDomain =& $currDomain[$keys[$i]]; $currDomain = & $currDomain[$keys[$i]];
} } else {
else{ trigger_error( "Operation not possible: Subdomain is not present $domainName", E_USER_ERROR );
return FALSE; return false;
} }
}
return TRUE;
}
/**
* function get
*
* @access public
* @param string $resource
* @return array
*/
function get($resource)
{
if (is_array($result=$this->load($resource))){
//Get one value per each $item
//Ex. *.first.name.es => Returns an array with all of the defined firstNames.
// first.name.es => Returns an array with one firstName.
// *.name.es => Returns an array with one value per each sub domain of name.es.
// For example: if name.es has the subdomains:
// first.name.es and last.name.es, it returns an array of
// two elements: one firstName and one lastName.
foreach($result as $key => $item){
if (is_array($item)){
$subResult = $this->plainArray($item);
$result[$key] = $subResult[ array_rand( $subResult, 1 ) ];
} }
} return true;
return $result;
} }
else{
return array('');
}
}
/** /**
* function name2keys * function addDomainValue
* *
* @access public * @access public
* @param string $resource * @param string $domainName
* @return array * @param string $value
*/ * @return boolean
function name2keys( $resource ) */
{ public function addDomainValue ($domainName, $value)
if (strpos( $resource, '.' )!==FALSE){ {
$revKeys=explode( '.', $resource ); $keys = $this->name2keys( $domainName );
$keys=array(); $currDomain = & $this->global;
for($i=count($revKeys)-1;$i>=0;$i--){ $i = 0;
$keys[]=$revKeys[$i]; for ($i = 0; $i < count( $keys ); $i ++) {
} if (is_array( $currDomain )) {
} $currDomain = & $currDomain[$keys[$i]];
elseif (strpos( $resource, '/' )!==FALSE){ } else {
$rootKeys=explode( '/', $resource ); trigger_error( "Operation not possible: Subdomain is not present $domainName", E_USER_ERROR );
unset($rootKeys[0]); return false;
$keys=array_values($rootKeys); }
}
else{
$keys=array($resource);
}
return $keys;
}
/**
* function load
*
* @access public
* @param string $resource
* @return array
*/
function load($resource)
{
$keys = $this->name2keys( $resource );
//Find in global variable
if (count($this->getNode($keys[0],$this->global))>0){
return $this->find( $keys, $this->global );
}
else{
if (file_exists(PATH_FIXTURES . $keys[0] . '.yml')){
$local = sfYAML::Load( PATH_FIXTURES . $keys[0] . '.yml');
unset($keys[0]);
$keys=array_values($keys);
return $this->find( $keys, $local );
}
else{
return NULL;
}
}
return NULL;
}
/**
* function find
*
* @access public
* @param string $nodesKey
* @param string $where
* @return array
*/
function find( $nodesKey , $where )
{
if (count($nodesKey)==1){
return $this->getNode( $nodesKey[0], $where );
}
elseif (count($nodesKey)>1){
$routes = $this->getNode( $nodesKey[0], $where );
$result=array();
unset($nodesKey[0]);
$nodesKey=array_values($nodesKey);
foreach($routes as $route){
if (is_array( $route )){
$subResult = $this->find( $nodesKey, $route );
$this->arrayAppend( $result, $subResult );
} }
else{ $currDomain[] = $value;
$result[]=$route; return true;
}
/**
* function exists
*
* @access public
* @param string $domainName
* @return boolean
*/
public function exists ($domainName)
{
$keys = $this->name2keys( $domainName );
$currDomain = & $this->global;
$i = 0;
for ($i = 0; $i < count( $keys ); $i ++) {
if (is_array( $currDomain ) && isset( $currDomain[$keys[$i]] )) {
$currDomain = & $currDomain[$keys[$i]];
} else {
return false;
}
} }
} return true;
return $result;
} }
else{
return array();
}
}
/** /**
* function getNode * function get
* *
* @access public * @access public
* @param string $nodesKey * @param string $resource
* @param string $from * @return array
* @return array */
*/ public function get ($resource)
function getNode( $nodeKey , $from ) {
{ if (is_array( $result = $this->load( $resource ) )) {
if($nodeKey==='*'){ //Get one value per each $item
return array_values($from); //Ex. *.first.name.es => Returns an array with all of the defined firstNames.
// first.name.es => Returns an array with one firstName.
// *.name.es => Returns an array with one value per each sub domain of name.es.
// For example: if name.es has the subdomains:
// first.name.es and last.name.es, it returns an array of
// two elements: one firstName and one lastName.
foreach ($result as $key => $item) {
if (is_array( $item )) {
$subResult = $this->plainArray( $item );
$result[$key] = $subResult[array_rand( $subResult, 1 )];
}
}
return $result;
} else {
return array ('');
}
} }
elseif (array_key_exists( $nodeKey, $from )){
return array($from[$nodeKey]);
}
else{
return array();
}
}
/**
* function plainArray
*
* @access public
* @param array $array
* @return array
*/
function plainArray( $array )
{
$result=array();
foreach($array as $item){
if (is_array($item)){
$appResult=$this->plainArray( $item );
$this->arrayAppend( $result, $appResult );
}
else{
$result[]=$item;
}
}
return $result;
}
/** /**
* function arrayAppend * function name2keys
* *
* @access public * @access public
* @param string $to * @param string $resource
* @param string $appendFrom * @return array
* @return void */
*/ public function name2keys ($resource)
function arrayAppend( &$to , $appendFrom ) {
{ if (strpos( $resource, '.' ) !== false) {
foreach($appendFrom as $appendItem) $to[]=$appendItem; $revKeys = explode( '.', $resource );
} $keys = array ();
for ($i = count( $revKeys ) - 1; $i >= 0; $i --) {
$keys[] = $revKeys[$i];
}
} elseif (strpos( $resource, '/' ) !== false) {
$rootKeys = explode( '/', $resource );
unset( $rootKeys[0] );
$keys = array_values( $rootKeys );
} else {
$keys = array ($resource );
}
return $keys;
}
/**
* function load
*
* @access public
* @param string $resource
* @return array
*/
public function load ($resource)
{
$keys = $this->name2keys( $resource );
//Find in global variable
if (count( $this->getNode( $keys[0], $this->global ) ) > 0) {
return $this->find( $keys, $this->global );
} else {
if (file_exists( PATH_FIXTURES . $keys[0] . '.yml' )) {
$local = sfYAML::Load( PATH_FIXTURES . $keys[0] . '.yml' );
unset( $keys[0] );
$keys = array_values( $keys );
return $this->find( $keys, $local );
} else {
return null;
}
}
return null;
}
/**
* function find
*
* @access public
* @param string $nodesKey
* @param string $where
* @return array
*/
public function find ($nodesKey, $where)
{
if (count( $nodesKey ) == 1) {
return $this->getNode( $nodesKey[0], $where );
} elseif (count( $nodesKey ) > 1) {
$routes = $this->getNode( $nodesKey[0], $where );
$result = array ();
unset( $nodesKey[0] );
$nodesKey = array_values( $nodesKey );
foreach ($routes as $route) {
if (is_array( $route )) {
$subResult = $this->find( $nodesKey, $route );
$this->arrayAppend( $result, $subResult );
} else {
$result[] = $route;
}
}
return $result;
} else {
return array ();
}
}
/**
* function getNode
*
* @access public
* @param string $nodesKey
* @param string $from
* @return array
*/
public function getNode ($nodeKey, $from)
{
if ($nodeKey === '*') {
return array_values( $from );
} elseif (array_key_exists( $nodeKey, $from )) {
return array ($from[$nodeKey] );
} else {
return array ();
}
}
/**
* function plainArray
*
* @access public
* @param array $array
* @return array
*/
public function plainArray ($array)
{
$result = array ();
foreach ($array as $item) {
if (is_array( $item )) {
$appResult = $this->plainArray( $item );
$this->arrayAppend( $result, $appResult );
} else {
$result[] = $item;
}
}
return $result;
}
/**
* function arrayAppend
*
* @access public
* @param string $to
* @param string $appendFrom
* @return void
*/
public function arrayAppend (&$to, $appendFrom)
{
foreach ($appendFrom as $appendItem) {
$to[] = $appendItem;
}
}
} }