PageRenderTime 272ms queryTime 61ms sortTime 0ms getByIdsTime 42ms findMatchingLines 78ms

100+ results results for 'php get_object_vars' (272 ms)

Not the results you expected?
Protection.php git://github.com/moodle/moodle.git | PHP | 582 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2015 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Worksheet
                    
34 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
290     * @param boolean $pValue
                    
291     * @return PHPExcel_Worksheet_Protection
                    
292     */
                    
312     * @param boolean $pValue
                    
313     * @return PHPExcel_Worksheet_Protection
                    
314     */
                    
                
questiontype_test.php git://github.com/moodle/moodle.git | PHP | 241 lines
                    
1<?php
                    
2// This file is part of Moodle - http://moodle.org/
                    
17/**
                    
18 * Unit tests for (some of) question/type/calculated/questiontype.php.
                    
19 *
                    
28global $CFG;
                    
29require_once($CFG->dirroot . '/question/type/calculated/questiontype.php');
                    
30require_once($CFG->dirroot . '/question/type/calculated/tests/helper.php');
                    
33/**
                    
34 * Unit tests for question/type/calculated/questiontype.php.
                    
35 *
                    
40    public static $includecoverage = array(
                    
41        'question/type/questiontypebase.php',
                    
42        'question/type/calculated/questiontype.php'
                    
92                'createdby', 'modifiedby', 'idnumber', 'contextid', 'options', 'hints', 'categoryobject'],
                    
93                array_keys(get_object_vars($questiondata)));
                    
94        $this->assertEquals($category->id, $questiondata->category);
                    
                
Template.php git://github.com/jeromeschneider/Baikal.git | PHP | 451 lines
                    
1<?php
                    
2
                    
288     * implementation detail that has been introduced to optimize variable
                    
289     * access for versions of PHP before 5.4. This is not a way to override
                    
290     * the way to get a variable value.
                    
379            if (!isset(self::$cache[$class]['properties'])) {
                    
380                foreach (get_object_vars($object) as $k => $v) {
                    
381                    self::$cache[$class]['properties'][$k] = true;
                    
                
Style.php https://PHPExcel.svn.codeplex.com/svn | PHP | 301 lines
                    
38/** PHPExcel_Style_Borders */
                    
39require_once 'PHPExcel/Style/Borders.php';
                    
40
                    
47/** PHPExcel_Style_Conditional */
                    
48require_once 'PHPExcel/Style/Conditional.php';
                    
49
                    
53/** PHPExcel_IComparable */
                    
54require_once 'PHPExcel/IComparable.php';
                    
55
                    
60 * @package    PHPExcel_Cell
                    
61 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
62 */
                    
62 */
                    
63class PHPExcel_Style implements PHPExcel_IComparable
                    
64{
                    
                
mdl.url.php http://phpfor.googlecode.com/svn/trunk/ | PHP | 178 lines
                    
1<?php
                    
2/**
                    
23        $map = null;
                    
24        if(include(PLUGIN_DIR.'/functions/urlmap.php')){
                    
25            if(is_array($map) && ($url!=($result = preg_replace(array_keys($map),$map,$url)))) {
                    
90            case 'discuz_reply.do':
                    
91                include_once(CORE_DIR."/func_ext.php");
                    
92                return $this->system->mkUrl('passport','callback',array('discuz')).'?action='.http_build_query($action);
                    
115        if (is_object($formdata)) {
                    
116            $formdata = get_object_vars($formdata);
                    
117        }
                    
165            } elseif (is_object($value)) {
                    
166                array_push($tmp, __http_build_query(get_object_vars($value), sprintf('%s[%s]', $name, $key)));
                    
167            }
                    
                
capabilities.php http://core.svn.wordpress.org/ | PHP | 486 lines
                    
1<?php
                    
2
                    
158
                    
159		foreach (get_object_vars($this->data) as $key => $value) {
                    
160			$this->{$key} = $value;
                    
                
BaseDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 438 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_Drawing_Shadow */
                    
36require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
37
                    
42 * @package    PHPExcel_Worksheet
                    
43 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
44 */
                    
44 */
                    
45class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
46{		
                    
216    		} else {
                    
217    			throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
218    		}
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 505 lines
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
42 */
                    
43class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
44{
                    
136		$this->_striketrough		= false;
                    
137		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
138    }
                    
158     *
                    
159     * Returns the PHPExcel_Style_Font that is actual bound to PHPExcel_Style
                    
160	 *
                    
175     *
                    
176     * If no PHPExcel_Style_Font has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
177	 *
                    
                
Border.php https://PHPExcel.svn.codeplex.com/svn | PHP | 382 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Border implements PHPExcel_IComparable
                    
37{
                    
97		// Initialise values
                    
98		$this->_color			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
99
                    
108	 *
                    
109	 * @param PHPExcel_Style_Borders $parent
                    
110	 * @param string $parentPropertyName
                    
                
Border.php git://github.com/Dolibarr/dolibarr.git | PHP | 382 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Border implements PHPExcel_IComparable
                    
37{
                    
97		// Initialise values
                    
98		$this->_color			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
99
                    
108	 *
                    
109	 * @param PHPExcel_Style_Borders $parent
                    
110	 * @param string $parentPropertyName
                    
                
MetaObjExport.php http://openbiz-cubi.googlecode.com/svn/trunk/ | PHP | 306 lines
                    
1<?php
                    
2class MetaObjExport
                    
67		$elemName = $className;	// element use class name by default
                    
68		$vars = get_object_vars($obj);
                    
69		if ($className == "TableJoin") {
                    
132		$elemName = $className;	// element use class name by default
                    
133		$vars = get_object_vars($obj);
                    
134		if ($className == "Panel") {
                    
231		$className = get_class($obj);
                    
232		$vars = get_object_vars($obj);
                    
233		$elemName = $className;	// element use class name by default
                    
271 *  @param boolean $html_output True if the output should be escaped (for use in HTML) 
                    
272 *  http://gdatatips.blogspot.com/2008/11/xml-php-pretty-printer.html, Apache 2.0 License.
                    
273 */  
                    
                
Drawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 483 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_Drawing_Shadow */
                    
36require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
37
                    
42 * @package    PHPExcel_Worksheet
                    
43 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
44 */
                    
44 */
                    
45class PHPExcel_Worksheet_Drawing implements PHPExcel_IComparable
                    
46{		
                    
275    			} else {
                    
276    				throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
277    			}
                    
                
Hessian2Writer.php http://hessianphp.googlecode.com/svn/trunk/ | PHP | 368 lines
                    
1<?php
                    
2/*
                    
2/*
                    
3 * This file is part of the HessianPHP package.
                    
4 * (c) 2004-2011 Manuel Gómez
                    
149			if($class == 'stdClass'){
                    
150				$classdef->props = array_keys(get_object_vars($value));
                    
151			} else
                    
                
Session.php git://pkgs.fedoraproject.org/horde | PHP | 392 lines
                    
1<?php
                    
2/**
                    
5 *
                    
6 * $Horde: framework/Kolab_Server/lib/Horde/Kolab/Session.php,v 1.1.2.12 2011/05/30 09:21:21 wrobel Exp $
                    
7 *
                    
7 *
                    
8 * PHP version 4
                    
9 *
                    
13 * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
                    
14 * @link     http://pear.horde.org/index.php?package=Kolab_Server
                    
15 */
                    
17/** We need the Auth library */
                    
18require_once 'Horde/Auth.php';
                    
19
                    
29 *
                    
30 * $Horde: framework/Kolab_Server/lib/Horde/Kolab/Session.php,v 1.1.2.12 2011/05/30 09:21:21 wrobel Exp $
                    
31 *
                    
                
ez_sql_core.php http://thinksns-2.googlecode.com/svn/trunk/ | PHP | 556 lines
                    
1<?php
                    
2
                    
4	*  Author: Justin Vincent (justin@visunet.ie)
                    
5	*  Web...: http://php.justinvincent.com
                    
6	*  Name..: ezSQL
                    
167			{
                    
168				$values = array_values(get_object_vars($this->last_result[$y]));
                    
169			}
                    
198			{
                    
199				return $this->last_result[$y]?get_object_vars($this->last_result[$y]):null;
                    
200			}
                    
203			{
                    
204				return $this->last_result[$y]?array_values(get_object_vars($this->last_result[$y])):null;
                    
205			}
                    
266
                    
267						$new_array[$i] = get_object_vars($row);
                    
268
                    
                
Conditional.php git://github.com/moodle/moodle.git | PHP | 294 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Style
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Conditional implements PHPExcel_IComparable
                    
37{
                    
118     *
                    
119     * @param string $pValue    PHPExcel_Style_Conditional condition type
                    
120     * @return PHPExcel_Style_Conditional
                    
                
kolab.php git://pkgs.fedoraproject.org/horde | PHP | 500 lines
                    
1<?php
                    
2
                    
2
                    
3require_once 'Horde/Group/ldap.php';
                    
4require_once 'Horde/LDAP.php';
                    
10 * FIXME: A better solution would be to let this class rely on
                    
11 *        Horde/Kolab/LDAP.php.
                    
12 *
                    
12 *
                    
13 * $Horde: framework/Group/Group/kolab.php,v 1.4.2.2 2009/01/06 15:23:08 jan Exp $
                    
14 *
                    
42        $this->_params['basedn'] = $GLOBALS['conf']['kolab']['ldap']['basedn'];
                    
43        $this->_params['binddn'] = $GLOBALS['conf']['kolab']['ldap']['phpdn'];
                    
44        $this->_params['password'] = $GLOBALS['conf']['kolab']['ldap']['phppw'];
                    
74    {
                    
75        $properties = get_object_vars($this);
                    
76        unset($properties['_datatree'], $properties['_ds']);
                    
                
class-wp-comment.php git://github.com/wordpress/wordpress.git | PHP | 369 lines
                    
1<?php
                    
2/**
                    
204	public function __construct( $comment ) {
                    
205		foreach ( get_object_vars( $comment ) as $key => $value ) {
                    
206			$this->$key = $value;
                    
217	public function to_array() {
                    
218		return get_object_vars( $this );
                    
219	}
                    
                
Json.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
23 */
                    
24require_once 'Zend/Json/Exception.php';
                    
25
                    
72
                    
73        require_once 'Zend/Json/Decoder.php';
                    
74        return Zend_Json_Decoder::decode($encodedValue, $objectDecodeType);
                    
98
                    
99        require_once 'Zend/Json/Encoder.php';
                    
100        return Zend_Json_Encoder::encode($valueToEncode, $cycleCheck, $options);
                    
113     *   
                    
114     * This function converts the XML formatted string into a PHP array by   
                    
115     * calling a recursive (protected static) function in this class. Then, it   
                    
115     * calling a recursive (protected static) function in this class. Then, it   
                    
116     * converts that PHP array into JSON by calling the "encode" static funcion.  
                    
117     *  
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 515 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
37/** PHPExcel_Style_Border */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Border.php';
                    
39
                    
40/** PHPExcel_IComparable */
                    
41require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
42
                    
48 * @package    PHPExcel_Style
                    
49 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
50 */
                    
50 */
                    
51class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
52{
                    
                
JSON.php http://ownerpress.googlecode.com/svn/trunk/ | PHP | 596 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * $Id: JSON.php 40 2007-06-18 11:43:15Z spocke $
                    
4 *
                    
430
                    
431	// This method was needed since PHP is crapy and doesn't have pointers/references
                    
432	function addArray($key) {
                    
477			case 'object':
                    
478				return $this->_encodeArray(get_object_vars($input));
                    
479		}
                    
                
BuilderElement.php http://cintient.googlecode.com/svn/trunk/ | PHP | 322 lines
                    
1<?php
                    
2/*
                    
34 * @version     $LastChangedRevision: 363 $
                    
35 * @link        $HeadURL: http://cintient.googlecode.com/svn/trunk/src/core/Build/BuilderElement.php $
                    
36 * Changed by   $LastChangedBy: pedro.matamouros $
                    
98    $internalId = null;
                    
99    $attributes = get_object_vars($this);
                    
100    foreach ($attributes as $attribute) {
                    
143    }
                    
144    $attributes = get_object_vars($this);
                    
145    $currentElement = $this;
                    
191    $dest = new $class();
                    
192    $attributes = get_object_vars($this);
                    
193
                    
256    $internalId = null;
                    
257    $attributes = get_object_vars($this);
                    
258    foreach ($attributes as $name => $attribute) {
                    
                
category.php http://core.svn.wordpress.org/ | PHP | 303 lines
                    
1<?php
                    
2
                    
159	} elseif ( $output == ARRAY_A ) {
                    
160		return get_object_vars($_category);
                    
161	} elseif ( $output == ARRAY_N ) {
                    
161	} elseif ( $output == ARRAY_N ) {
                    
162		return array_values(get_object_vars($_category));
                    
163	} else {
                    
                
admin-db.php http://core.svn.wordpress.org/ | PHP | 350 lines
                    
1<?php
                    
2
                    
250	} elseif ( $output == ARRAY_A ) {
                    
251		return get_object_vars($link);
                    
252	} elseif ( $output == ARRAY_N ) {
                    
252	} elseif ( $output == ARRAY_N ) {
                    
253		return array_values(get_object_vars($link));
                    
254	} else {
                    
                
PHPExcel.php https://PHPExcel.svn.codeplex.com/svn | PHP | 383 lines
                    
32/** PHPExcel_DocumentProperties */
                    
33require_once 'PHPExcel/DocumentProperties.php';
                    
34
                    
38/** PHPExcel_Worksheet */
                    
39require_once 'PHPExcel/Worksheet.php';
                    
40
                    
41/** PHPExcel_Shared_ZipStreamWrapper */
                    
42require_once 'PHPExcel/Shared/ZipStreamWrapper.php';
                    
43
                    
44/** PHPExcel_NamedRange */
                    
45require_once 'PHPExcel/NamedRange.php';
                    
46
                    
52 * @package    PHPExcel
                    
53 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
54 */
                    
                
Column.php git://github.com/moodle/moodle.git | PHP | 406 lines
                    
5 *
                    
6 * Copyright (c) 2006 - 2015 PHPExcel
                    
7 *
                    
23 * @package        PHPExcel_Worksheet
                    
24 * @copyright    Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license        http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
201        if (!in_array($pFilterType, self::$filterTypes)) {
                    
202            throw new PHPExcel_Exception('Invalid filter type for column AutoFilter.');
                    
203        }
                    
334     * @param    boolean    $returnRule     Flag indicating whether the rule object or the column object should be returned
                    
335     * @return    PHPExcel_Worksheet_AutoFilter_Column|PHPExcel_Worksheet_AutoFilter_Column_Rule
                    
336     */
                    
336     */
                    
337    public function addRule(PHPExcel_Worksheet_AutoFilter_Column_Rule $pRule, $returnRule = true)
                    
338    {
                    
                
core.php http://micromvc-php.googlecode.com/svn/trunk/ | PHP | 512 lines
                    
1<?php
                    
2/**
                    
56		//Path to the config file
                    
57		$path = SITE_DIR. SITE_NAME. '/'. $name. '.php';
                    
58
                    
88		if (!class_exists('cxpdo')) {
                    
89			require_once(SITE_DIR. 'database/cxpdo.php');
                    
90		}
                    
120		//If the model file doesn't exist
                    
121		if (!file_exists(SITE_DIR. $path. '/'. $class. '.php')){
                    
122			trigger_error('Unable to locate the class "<b>'. $class. '</b>".');
                    
127		if (!class_exists($class)) {
                    
128			require_once(SITE_DIR. $path. '/'. $class. '.php');
                    
129		}
                    
138
                    
139		foreach (array_keys(get_object_vars($this)) as $key) {
                    
140
                    
                
UnitOfWork.php git://github.com/doctrine/KeyValueStore.git | PHP | 295 lines
                    
1<?php
                    
2
                    
103        if (isset($data['php_class'])) {
                    
104            if ($data['php_class'] !== $class->name && ! is_subclass_of($data['php_class'], $class->name)) {
                    
105                throw new \RuntimeException(
                    
105                throw new \RuntimeException(
                    
106                    "Row is of class '" . $data['php_class'] . "' which is not a subtype of expected " . $class->name
                    
107                );
                    
108            }
                    
109            $class = $this->cmf->getMetadataFor($data['php_class']);
                    
110        }
                    
110        }
                    
111        unset($data['php_class']);
                    
112
                    
166
                    
167        foreach (get_object_vars($object) as $property => $value) {
                    
168            if (! isset($data[$property])) {
                    
                
page.php http://puelia-php.googlecode.com/svn/trunk/ | PHP | 236 lines
                    
1<?php
                    
2require 'lib/moriarty/graphpath.class.php';
                    
3class PueliaPage {
                    
99    var $longitude=false;
                    
100    var $GraphPath = false;
                    
101    var $gotProperties = array();
                    
114        $this->longitude = $this->data->get_first_literal($uri, GEO.'long');
                    
115//	$this->GraphPath = new GraphPath();
                    
116    }
                    
127
                    
128      if(in_array($name, array_keys(get_object_vars($this)))) {
                    
129        return $this->$name;
                    
141        } 
                    
142        else if(in_array($name, array_keys(get_object_vars($this)))) {
                    
143            return new PueliaItem($this->$name, $this->data, $this->config);
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 635 lines
                    
37/** PHPExcel_Style_Color */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Color.php';
                    
39
                    
40/** PHPExcel_IComparable */
                    
41require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
42
                    
48 * @package    PHPExcel_Style
                    
49 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
50 */
                    
50 */
                    
51class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
52{
                    
153		$this->_strikethrough		= false;
                    
154		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
155
                    
                
HeaderFooter.php https://PHPExcel.svn.codeplex.com/svn | PHP | 380 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * Copyright (c) 2006 - 2007 PHPExcel, Maarten Balliauw
                    
6 *
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Worksheet_HeaderFooter
                    
31 *
                    
93 * @package    PHPExcel_Worksheet
                    
94 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
95 */
                    
                
HeaderFooter.php https://PHPExcel.svn.codeplex.com/svn | PHP | 380 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * Copyright (c) 2006 - 2008 PHPExcel
                    
6 *
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Worksheet_HeaderFooter
                    
31 *
                    
93 * @package    PHPExcel_Worksheet
                    
94 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
95 */
                    
                
HeaderFooter.php https://PHPExcel.svn.codeplex.com/svn | PHP | 380 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * Copyright (c) 2006 - 2007 PHPExcel
                    
6 *
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Worksheet_HeaderFooter
                    
31 *
                    
93 * @package    PHPExcel_Worksheet
                    
94 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
95 */
                    
                
helper.php http://vanphongphamdm.googlecode.com/svn/trunk/ | PHP | 308 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3* @version		$Id: helper.php 14401 2010-01-26 14:10:00Z louis $
                    
4* @package		Joomla.Framework
                    
6* @copyright	Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
                    
7* @license		GNU/GPL, see LICENSE.php
                    
8* Joomla! is free software. This version may have been modified pursuant
                    
11* other free or open source software licenses.
                    
12* See COPYRIGHT.php for copyright notices and details.
                    
13*/
                    
139			$registry =& JFactory::getConfig();
                    
140			foreach (get_object_vars($registry->toObject()) as $k => $v) {
                    
141				$name = 'mosConfig_'.$k;
                    
144			$contentConfig = &JComponentHelper::getParams( 'com_content' );
                    
145			foreach (get_object_vars($contentConfig->toObject()) as $k => $v)
                    
146			{
                    
                
Util.php http://ownerpress.googlecode.com/svn/trunk/ | PHP | 226 lines
                    
1<?php
                    
2require_once 'Snoopy.class.php';
                    
149			$xmlCode=simplexml_load_string($strXml,'SimpleXMLElement', LIBXML_NOCDATA);
                    
150			$arrayCode=self::get_object_vars_final($xmlCode);
                    
151			return $arrayCode ;
                    
156	
                    
157	static private function get_object_vars_final($obj){
                    
158		if(is_object($obj)){
                    
158		if(is_object($obj)){
                    
159			$obj=get_object_vars($obj);
                    
160		}
                    
163			foreach ($obj as $key=>$value){
                    
164				$v = self::get_object_vars_final($value);
                    
165				//ADD BY ROGER??????????????
                    
                
buzzParser.php http://buzz-php-client.googlecode.com/svn/trunk/ | PHP | 363 lines
                    
1<?php
                    
2/*
                    
17
                    
18require_once "models/buzzStream.php";
                    
19require_once "models/buzzLink.php";
                    
19require_once "models/buzzLink.php";
                    
20require_once "models/buzzPost.php";
                    
21require_once "models/buzzComment.php";
                    
21require_once "models/buzzComment.php";
                    
22require_once "models/buzzPerson.php";
                    
23require_once "models/buzzAttachment.php";
                    
23require_once "models/buzzAttachment.php";
                    
24require_once "models/buzzObject.php";
                    
25require_once "models/buzzTarget.php";
                    
289    } elseif (is_object($object)) {
                    
290      $vars = get_object_vars($object);
                    
291      foreach ($vars as $key => $val) {
                    
                
bookmark.php http://cartonbank.googlecode.com/svn/trunk/ | PHP | 372 lines
                    
1<?php
                    
2/**
                    
45	} elseif ( $output == ARRAY_A ) {
                    
46		return get_object_vars($_bookmark);
                    
47	} elseif ( $output == ARRAY_N ) {
                    
47	} elseif ( $output == ARRAY_N ) {
                    
48		return array_values(get_object_vars($_bookmark));
                    
49	} else {
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 547 lines
                    
29/** PHPExcel_Style_Border */
                    
30require_once 'PHPExcel/Style/Border.php';
                    
31
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
44{
                    
170     *
                    
171     * Returns the PHPExcel_Style_Borders that is actual bound to PHPExcel_Style
                    
172	 *
                    
187     *
                    
188     * If no PHPExcel_Style_Borders has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
189	 *
                    
                
class-wp-network.php git://github.com/wordpress/wordpress.git | PHP | 477 lines
                    
1<?php
                    
2/**
                    
131	public function __construct( $network ) {
                    
132		foreach ( get_object_vars( $network ) as $key => $value ) {
                    
133			$this->$key = $value;
                    
                
base.php git://github.com/fuel/core.git | PHP | 540 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * Fuel is a fast, lightweight, community driven PHP 5.4+ framework.
                    
4 *
                    
9 * @copyright  2010 - 2019 Fuel Development Team
                    
10 * @link       https://fuelphp.com
                    
11 */
                    
12
                    
13// load PHP 5.6+ specific code
                    
14if (PHP_VERSION_ID >= 50600)
                    
15{
                    
16	include "base56.php";
                    
17}
                    
252 *
                    
253 * see http://www.php.net/manual/en/function.http-build-url.php#96335
                    
254 *
                    
                
lib.json.basic.class.php http://php-ppcms.googlecode.com/svn/trunk/ | PHP | 384 lines
                    
1<?php
                    
2/***************************************************************
                    
60			case 'object':
                    
61				foreach(get_object_vars($data) as $k => $v) {
                    
62					$v = $this->encode($v);
                    
371		$d = array();
                    
372		$a = is_object($obj) ? get_object_vars($obj) : $obj;
                    
373		foreach($a as $k => $v) {
                    
                
class.ezsql.core.php http://vanilla-journal.googlecode.com/svn/trunk/ | PHP | 373 lines
                    
1<?php
                    
2
                    
4 *  Author: Justin Vincent (justin@visunet.ie)
                    
5 *  Web...: http://php.justinvincent.com
                    
6 *  Name..: ezSQL
                    
132      if ( $this->last_result[$y] ) {
                    
133	 $values = array_values(get_object_vars($this->last_result[$y]));
                    
134      }
                    
159      elseif ( $output == ARRAY_A ) {
                    
160	 return $this->last_result[$y]?get_object_vars($this->last_result[$y]):null;
                    
161      }
                    
163      elseif ( $output == ARRAY_N ) {
                    
164	 return $this->last_result[$y]?array_values(get_object_vars($this->last_result[$y])):null;
                    
165      }
                    
213
                    
214	       $new_array[$i] = get_object_vars($row);
                    
215
                    
                
Fill.php https://PHPExcel.svn.codeplex.com/svn | PHP | 257 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Fill implements PHPExcel_IComparable
                    
44{
                    
104		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE);
                    
105		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
106    }
                    
                
Fill.php https://PHPExcel.svn.codeplex.com/svn | PHP | 257 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Fill implements PHPExcel_IComparable
                    
44{
                    
104		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE);
                    
105		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
106    }
                    
                
ArrayObject.php git://github.com/zendframework/zf2.git | PHP | 433 lines
                    
1<?php
                    
2/**
                    
66        $this->setIteratorClass($iteratorClass);
                    
67        $this->protectedProperties = array_keys(get_object_vars($this));
                    
68    }
                    
332    {
                    
333        return serialize(get_object_vars($this));
                    
334    }
                    
407        $ar                        = unserialize($data);
                    
408        $this->protectedProperties = array_keys(get_object_vars($this));
                    
409
                    
                
ResultSet.php git://github.com/spadefoot/kohana-orm-leap.git | PHP | 362 lines
                    
1<?php defined('SYSPATH') OR die('No direct script access.');
                    
2
                    
136							foreach ($this->records as $record) {
                    
137								$csv->add_row(get_object_vars($record));
                    
138							}
                    
                
plugin.php http://phpfor.googlecode.com/svn/trunk/ | PHP | 193 lines
                    
1<?php
                    
2include_once('shopObject.php');
                    
27        $file_name = ($this->plugin_type=='dir')?
                    
28            PLUGIN_DIR.'/'.$this->plugin_name.'/'.$item.'/'.($this->prefix!==false?$this->prefix:$this->plugin_name).$item.'.php':
                    
29            PLUGIN_DIR.'/'.$this->plugin_name.'/'.($this->prefix!==false?$this->prefix:$this->plugin_name).$item.'.php';
                    
93            $o = new $className;
                    
94            $t =array_merge($t, get_object_vars($o));
                    
95            if ($ifMethods) {
                    
98
                    
99            //for PHP4/PHP5 Compatibility
                    
100            $t['hasOptions'] = in_array('getoptions',$t['methods'])||in_array('getOptions',$t['methods']);
                    
147
                    
148                    if(preg_match('/^'.($this->prefix!==false?str_replace('.','\.',$this->prefix):$this->plugin_name).'([a-z0-9\_]+)\.php/i',$file, $match)) {
                    
149                        $item = $match[1];
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 502 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
37/** PHPExcel_IComparable */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
39
                    
45 * @package    PHPExcel_Style
                    
46 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
47 */
                    
47 */
                    
48class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
49{	
                    
146	 *
                    
147	 * @param PHPExcel $parent
                    
148	 * @return PHPExcel_Style_Alignment
                    
                
NamedRange.php git://github.com/moodle/moodle.git | PHP | 250 lines
                    
3/**
                    
4 * PHPExcel_NamedRange
                    
5 *
                    
21 *
                    
22 * @category   PHPExcel
                    
23 * @package    PHPExcel
                    
23 * @package    PHPExcel
                    
24 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
103     * @param string $value
                    
104     * @return PHPExcel_NamedRange
                    
105     */
                    
131     *
                    
132     * @return PHPExcel_Worksheet
                    
133     */
                    
                
registry.php https://bitbucket.org/joomla/joomla-platform/ | PHP | 514 lines
                    
1<?php
                    
2/**
                    
11
                    
12JLoader::register('JRegistryFormat', dirname(__FILE__).'/format.php');
                    
13
                    
352		if(is_object($data)) {
                    
353			$data = get_object_vars($data);
                    
354		} else {
                    
379
                    
380		foreach (get_object_vars((object) $data) as $k => $v) {
                    
381			if (is_object($v)) {
                    
                
Alignment.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 538 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
32 * @package	PHPExcel_Style
                    
33 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
34 */
                    
34 */
                    
35class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
36{
                    
158     *
                    
159     * @return PHPExcel_Worksheet
                    
160     */
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 578 lines
                    
29/** PHPExcel_Style_Border */
                    
30require_once 'PHPExcel/Style/Border.php';
                    
31
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
44{
                    
170     *
                    
171     * Returns the PHPExcel_Style_Borders that is actual bound to PHPExcel_Style
                    
172	 *
                    
187     *
                    
188     * If no PHPExcel_Style_Borders has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
189	 *
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 163 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2007 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
41{
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 335 lines
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
44{
                    
105		$this->_striketrough		= false;
                    
106		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
107    }
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 335 lines
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
44{
                    
105		$this->_striketrough		= false;
                    
106		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
107    }
                    
                
PHPExcel.php https://PHPExcel.svn.codeplex.com/svn | PHP | 269 lines
                    
29/** PHPExcel_Cell */
                    
30require_once 'PHPExcel/Cell.php';
                    
31
                    
35/** PHPExcel_DocumentSecurity */
                    
36require_once 'PHPExcel/DocumentSecurity.php';
                    
37
                    
38/** PHPExcel_Worksheet */
                    
39require_once 'PHPExcel/Worksheet.php';
                    
40
                    
41/** PHPExcel_Shared_ZipStreamWrapper */
                    
42require_once 'PHPExcel/Shared/ZipStreamWrapper.php';
                    
43
                    
49 * @package    PHPExcel
                    
50 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
51 */
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 226 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Protection implements PHPExcel_IComparable
                    
41{
                    
104     *
                    
105     * Returns the PHPExcel_Style_Protection that is actual bound to PHPExcel_Style
                    
106	 *
                    
121     *
                    
122     * If no PHPExcel_Style_Protection has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
123	 *
                    
                
DataValidation.php https://PHPExcel.svn.codeplex.com/svn | PHP | 510 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2010 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
220	 * @param	string	$value
                    
221	 * @return PHPExcel_Cell_DataValidation
                    
222	 */
                    
459	 *
                    
460	 * @param	PHPExcel_Cell	$value
                    
461	 * @return PHPExcel_Cell_DataValidation
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 421 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
37/** PHPExcel_IComparable */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
39
                    
45 * @package    PHPExcel_Style
                    
46 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
47 */
                    
47 */
                    
48class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
49{
                    
97    /**
                    
98     * Create a new PHPExcel_Style_Color
                    
99     * 
                    
                
Xmlrpcs.php git://github.com/prashants/webzash.git | PHP | 536 lines
                    
1<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
                    
2/**
                    
4 *
                    
5 * An open source application development framework for PHP 4.3.2 or newer
                    
6 *
                    
17{	
                    
18	show_error('Your PHP installation does not support XML');
                    
19}
                    
210				{
                    
211					$plist .= "$i - " .  print_r(get_object_vars($parser_object->xh[$parser]['params'][$i]), TRUE). ";\n";
                    
212				}
                    
534
                    
535/* End of file Xmlrpcs.php */
                    
536/* Location: ./system/libraries/Xmlrpcs.php */
                    
                
Deserializer.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
22/** Zend_Amf_Parse_Deserializer */
                    
23require_once 'Zend/Amf/Parse/Deserializer.php';
                    
24
                    
25/**
                    
26 * Read an AMF0 input stream and convert it into PHP data types
                    
27 *
                    
64     * @param  integer $typeMarker
                    
65     * @return mixed whatever the data type is of the marker in php
                    
66     * @return mixed
                    
136            default:
                    
137                require_once 'Zend/Amf/Exception.php';
                    
138                throw new Zend_Amf_Exception('Unsupported marker type: ' . $typeMarker);
                    
142    /**
                    
143     * Read AMF objects and convert to PHP objects
                    
144     *
                    
                
HeaderFooter.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 502 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2011 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
92 * @package    PHPExcel_Worksheet
                    
93 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
94 */
                    
268     * @param string $pValue
                    
269     * @return PHPExcel_Worksheet_HeaderFooter
                    
270     */
                    
290     * @param string $pValue
                    
291     * @return PHPExcel_Worksheet_HeaderFooter
                    
292     */
                    
                
datagrid.php http://rapyd-framework.googlecode.com/svn/trunk/ | PHP | 461 lines
                    
1<?php
                    
2
                    
115		rpd_html_helper::css('datagrid.css');
                    
116		$data = get_object_vars($this);
                    
117		$this->build_buttons();
                    
141				$column->set_row($tablerow);
                    
142				$cell = get_object_vars($column);
                    
143				$cell["value"] = $column->get_value();
                    
159		header("Content-Disposition: inline; filename=$filename");
                    
160		$data = get_object_vars($this);
                    
161		//table rows
                    
169				$column->set_row($tablerow);
                    
170				$cell = get_object_vars($column);
                    
171				$cell["value"] = $column->get_value();
                    
191
                    
192		$data = get_object_vars($this);
                    
193		foreach ($this->columns as $column)
                    
                
BrowserInfo.php git://github.com/jquery/testswarm.git | PHP | 369 lines
                    
1<?php
                    
2/**
                    
46			foreach ( $userAgents as $uaID => $uaData ) {
                    
47				$keys = array_keys(get_object_vars(
                    
48					$swarmContext->getBrowserInfo()->getUaData()
                    
106	 * @param Array|stdClass $b UA data.
                    
107	 * @return int Like other PHP comparison functions,
                    
108	 *  returns -1 if A is less than B, +1 if A is greater than B, 0 if they are equal.
                    
                
options.php git://pkgs.fedoraproject.org/pgfouine | PHP | 367 lines
                    
1<?php
                    
2    /**
                    
4     *	@package	SimpleTest
                    
5     *	@version	$Id: options.php,v 1.1 2005/11/09 23:41:18 gsmet Exp $
                    
6     */
                    
207     *  Static methods for compatibility between different
                    
208     *  PHP versions.
                    
209     *  @package	SimpleTest
                    
213        /**
                    
214         *    Identity test. Drops back to equality + types for PHP5
                    
215         *    objects as the === operator counts as the
                    
225            }
                    
226            if (version_compare(phpversion(), '5') >= 0) {
                    
227                return SimpleTestCompatibility::_isIdenticalType($first, $second);
                    
247                return SimpleTestCompatibility::_isArrayOfIdenticalTypes(
                    
248                        get_object_vars($first),
                    
249                        get_object_vars($second));
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 257 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Protection implements PHPExcel_IComparable
                    
41{
                    
104     *
                    
105     * Returns the PHPExcel_Style_Protection that is actual bound to PHPExcel_Style
                    
106	 *
                    
121     *
                    
122     * If no PHPExcel_Style_Protection has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
123	 *
                    
                
WindWebApplication.php git://github.com/phpwind/windframework.git | PHP | 314 lines
                    
1<?php
                    
2/**
                    
5 * @author Qiong Wu <papa0924@gmail.com>
                    
6 * @copyright ©2003-2103 phpwind.com
                    
7 * @license http://www.windframework.com
                    
60	
                    
61	/* (non-PHPdoc)
                    
62	 * @see IWindApplication::run()
                    
86	
                    
87	/* (non-PHPdoc)
                    
88	 * @see WindModule::setConfig()
                    
110		else {
                    
111			if (is_object($data)) $data = get_object_vars($data);
                    
112			$_G = $data;
                    
                
HeadLink.php git://github.com/zendframework/zf2.git | PHP | 496 lines
                    
1<?php
                    
2/**
                    
61     *
                    
62     * Use PHP_EOL as separator
                    
63     */
                    
67
                    
68        $this->setSeparator(PHP_EOL);
                    
69    }
                    
196
                    
197        $vars         = get_object_vars($value);
                    
198        $keys         = array_keys($vars);
                    
                
class-wp-customize-section.php git://github.com/wordpress/wordpress.git | PHP | 402 lines
                    
1<?php
                    
2/**
                    
172	public function __construct( $manager, $id, $args = array() ) {
                    
173		$keys = array_keys( get_object_vars( $this ) );
                    
174		foreach ( $keys as $key ) {
                    
337		?>
                    
338		<script type="text/html" id="tmpl-customize-section-<?php echo $this->type; ?>">
                    
339			<?php $this->render_template(); ?>
                    
340		</script>
                    
341		<?php
                    
342	}
                    
358				{{ data.title }}
                    
359				<span class="screen-reader-text"><?php _e( 'Press return or enter to open this section' ); ?></span>
                    
360			</h3>
                    
364						<button class="customize-section-back" tabindex="-1">
                    
365							<span class="screen-reader-text"><?php _e( 'Back' ); ?></span>
                    
366						</button>
                    
                
Renderer.php http://miacms.googlecode.com/svn/trunk/ | PHP | 242 lines
                    
1<?php
                    
2/**
                    
7 *
                    
8 * $Horde: framework/Text_Diff/Diff/Renderer.php,v 1.21 2008/01/04 10:07:50 jan Exp $
                    
9 *
                    
12 * See the enclosed file COPYING for license information (LGPL). If you did
                    
13 * not receive this file, see http://opensource.org/licenses/lgpl-license.php.
                    
14 *
                    
59        $params = array();
                    
60        foreach (get_object_vars($this) as $k => $v) {
                    
61            if ($k[0] == '_') {
                    
                
dumper.php http://skeleton.googlecode.com/svn/trunk/ | PHP | 360 lines
                    
1<?php
                    
2    /**
                    
5     *  @subpackage UnitTester
                    
6     *  @version    $Id: dumper.php 1672 2008-03-02 04:47:34Z edwardzyang $
                    
7     */
                    
312            return $this->_describeArrayDifference(
                    
313                    get_object_vars($first),
                    
314                    get_object_vars($second),
                    
                
Drawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 189 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_BaseDrawing */
                    
36require_once 'PHPExcel/Worksheet/BaseDrawing.php';
                    
37
                    
38/** PHPExcel_Worksheet_Drawing_Shadow */
                    
39require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
40
                    
46 * @package    PHPExcel_Worksheet_Drawing
                    
47 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
48 */
                    
48 */
                    
49class PHPExcel_Worksheet_Drawing extends PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable 
                    
50{		
                    
                
registry.php git://github.com/joomla/joomla-platform.git | PHP | 472 lines
                    
1<?php
                    
2/**
                    
90	 * @since   12.2
                    
91	 * @note    The interface is only present in PHP 5.4 and up.
                    
92	 */
                    
423		{
                    
424			$data = get_object_vars($data);
                    
425		}
                    
457
                    
458		foreach (get_object_vars((object) $data) as $k => $v)
                    
459		{
                    
                
DataValidation.php https://PHPExcel.svn.codeplex.com/svn | PHP | 501 lines
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Cell_DataValidation
                    
31 *
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
88     */
                    
89    private $_errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP;
                    
90    
                    
161    /**
                    
162     * Create a new PHPExcel_Cell_DataValidation
                    
163     *
                    
                
DataValidation.php https://PHPExcel.svn.codeplex.com/svn | PHP | 501 lines
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Cell_DataValidation
                    
31 *
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
88     */
                    
89    private $_errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP;
                    
90    
                    
161    /**
                    
162     * Create a new PHPExcel_Cell_DataValidation
                    
163     *
                    
                
Borders.php http://myopensources.googlecode.com/svn/trunk/ | PHP | 347 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Style_Border */
                    
30require_once 'PHPExcel/Style/Border.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
44{
                    
                
Perms.php git://pkgs.fedoraproject.org/horde | PHP | 415 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * $Horde: framework/Kolab_Storage/lib/Horde/Kolab/Storage/Perms.php,v 1.2.2.2 2009/01/06 15:23:18 jan Exp $
                    
6 */
                    
8/** Basic Horde Permission library. **/
                    
9require_once 'Horde/Perms.php';
                    
10
                    
15 *
                    
16 * $Horde: framework/Kolab_Storage/lib/Horde/Kolab/Storage/Perms.php,v 1.2.2.2 2009/01/06 15:23:18 jan Exp $
                    
17 *
                    
79    {
                    
80        $properties = get_object_vars($this);
                    
81        unset($properties['_folder']);
                    
177                if (!isset($groups)) {
                    
178                    require_once 'Horde/Group.php';
                    
179                    $groups = &Group::singleton();
                    
                
DocumentSecurity.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 234 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2011 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
32 * @package    PHPExcel
                    
33 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
34 */
                    
34 */
                    
35class PHPExcel_DocumentSecurity
                    
36{
                    
72    /**
                    
73     * Create a new PHPExcel_DocumentSecurity
                    
74     */
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 494 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Style_Border */
                    
30require_once 'PHPExcel/Style/Border.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
44{
                    
                
Encoder.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
24 */
                    
25require_once 'Zend/Json/Exception.php';
                    
26
                    
28/**
                    
29 * Encode PHP constructs to JSON
                    
30 *
                    
146        } else {
                    
147        	$propCollection = get_object_vars($value);
                    
148        }
                    
391    /**
                    
392     * Encodes the given $className into the class2 model of encoding PHP
                    
393     * classes into JavaScript class2 classes.
                    
                
BaseDrawing.php git://github.com/Dolibarr/dolibarr.git | PHP | 486 lines
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Worksheet
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
37{
                    
212     *
                    
213     * @param 	PHPExcel_Worksheet 	$pValue
                    
214     * @param 	bool				$pOverrideOld	If a Worksheet has already been assigned, overwrite it and remove image from old Worksheet?
                    
239    		} else {
                    
240    			throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
241    		}
                    
                
HeaderFooter.php https://PHPExcel.svn.codeplex.com/svn | PHP | 456 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Worksheet_HeaderFooterDrawing */
                    
30require_once 'PHPExcel/Worksheet/HeaderFooterDrawing.php';
                    
31
                    
97 * @package    PHPExcel_Worksheet
                    
98 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
99 */
                    
99 */
                    
100class PHPExcel_Worksheet_HeaderFooter
                    
101{	
                    
                
HeaderFooter.php https://PHPExcel.svn.codeplex.com/svn | PHP | 456 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Worksheet_HeaderFooterDrawing */
                    
30require_once 'PHPExcel/Worksheet/HeaderFooterDrawing.php';
                    
31
                    
97 * @package    PHPExcel_Worksheet
                    
98 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
99 */
                    
99 */
                    
100class PHPExcel_Worksheet_HeaderFooter
                    
101{	
                    
                
ResultSet.php git://github.com/michael-romer/zf-boilerplate.git | PHP | 289 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ResultSet.php 23775 2011-03-01 17:25:24Z ralph $
                    
21 */
                    
26 */
                    
27require_once 'Zend/Service/Technorati/Result.php';
                    
28
                    
269        $this->_xml     = $this->getXml();
                    
270        $vars = array_keys(get_object_vars($this));
                    
271        return array_diff($vars, array('_dom', '_xpath'));
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 619 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
37{
                    
137		// Initialise values
                    
138		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
139
                    
224	 * <code>
                    
225	 * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray(
                    
226	 *		array(
                    
                
jhellosef.php http://kak.googlecode.com/svn/trunk/ | PHP | 196 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * @version		$Id:jhellosef.php 6961 2009-01-12 19:13:20Z tcp $
                    
4 * @package		Joomla.Framework
                    
6 * @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
                    
7 * @license		GNU/GPL, see LICENSE.php
                    
8 * Joomla! is free software. This version may have been modified pursuant to the
                    
10 * of works licensed under the GNU General Public License or other free or open
                    
11 * source software licenses. See COPYRIGHT.php for copyright notices and
                    
12 * details.
                    
42		{
                    
43			foreach (get_object_vars( $mixed ) as $k => $v)
                    
44			{
                    
                
BaseDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 503 lines
                    
37/** PHPExcel_IComparable */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
39
                    
40/** PHPExcel_Worksheet */
                    
41require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet.php';
                    
42
                    
43/** PHPExcel_Worksheet_Drawing_Shadow */
                    
44require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
45
                    
52 */
                    
53class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
54{		
                    
256    		} else {
                    
257    			throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
258    		}
                    
                
Data.php git://github.com/eryx/php-framework-benchmark.git | PHP | 521 lines
                    
1<?php
                    
2/**
                    
502            } else {
                    
503                $item = get_object_vars($item);
                    
504            }
                    
                
Protection.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 571 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2011 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
32 * @package    PHPExcel_Worksheet
                    
33 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
34 */
                    
274     * @param boolean $pValue
                    
275     * @return PHPExcel_Worksheet_Protection
                    
276     */
                    
296     * @param boolean $pValue
                    
297     * @return PHPExcel_Worksheet_Protection
                    
298     */
                    
                
Comment.php git://github.com/moodle/moodle.git | PHP | 339 lines
                    
1<?php
                    
2
                    
5 *
                    
6 * Copyright (c) 2006 - 2015 PHPExcel
                    
7 *
                    
23 * @package    PHPExcel
                    
24 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
27 */
                    
28class PHPExcel_Comment implements PHPExcel_IComparable
                    
29{
                    
120     * @param string $pValue
                    
121     * @return PHPExcel_Comment
                    
122     */
                    
318    {
                    
319        $vars = get_object_vars($this);
                    
320        foreach ($vars as $key => $value) {
                    
                
Supervisor.php git://github.com/moodle/moodle.git | PHP | 126 lines
                    
3/**
                    
4 * PHPExcel_Style_Supervisor
                    
5 *
                    
5 *
                    
6 * Copyright (c) 2006 - 2015 PHPExcel
                    
7 *
                    
21 *
                    
22 * @category   PHPExcel
                    
23 * @package    PHPExcel_Style
                    
23 * @package    PHPExcel_Style
                    
24 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
27 */
                    
28abstract class PHPExcel_Style_Supervisor
                    
29{
                    
                
Tree.php https://code.google.com/p/s3db/ | PHP | 371 lines
                    
1<?php
                    
2//
                    
3// +----------------------------------------------------------------------+
                    
4// | PHP Version 4                                                        |
                    
5// +----------------------------------------------------------------------+
                    
5// +----------------------------------------------------------------------+
                    
6// | Copyright (c) 1997-2002 The PHP Group                                |
                    
7// +----------------------------------------------------------------------+
                    
7// +----------------------------------------------------------------------+
                    
8// | This source file is subject to version 2.02 of the PHP license,      |
                    
9// | that is bundled with this package in the file LICENSE, and is        |
                    
10// | available at through the world-wide-web at                           |
                    
11// | http://www.php.net/license/2_02.txt.                                 |
                    
12// | If you did not receive a copy of the PHP license and are unable to   |
                    
13// | obtain it through the world-wide-web, please send a note to          |
                    
14// | license@php.net so we can mail you a copy immediately.               |
                    
15// +----------------------------------------------------------------------+
                    
                
Comment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 316 lines
                    
29/** PHPExcel_RichText */
                    
30require_once 'PHPExcel/RichText.php';
                    
31
                    
32/** PHPExcel_Style_Color */
                    
33require_once 'PHPExcel/Style/Color.php';
                    
34
                    
35/** PHPExcel_IComparable */
                    
36require_once 'PHPExcel/IComparable.php';
                    
37
                    
43 * @package    PHPExcel
                    
44 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
45 */
                    
45 */
                    
46class PHPExcel_Comment implements PHPExcel_IComparable
                    
47{
                    
                
Font.php git://github.com/Dolibarr/dolibarr.git | PHP | 619 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
37{
                    
137		// Initialise values
                    
138		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
139
                    
224	 * <code>
                    
225	 * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray(
                    
226	 *		array(
                    
                
Style.php https://PHPExcel.svn.codeplex.com/svn | PHP | 435 lines
                    
38/** PHPExcel_Style_Borders */
                    
39require_once 'PHPExcel/Style/Borders.php';
                    
40
                    
50/** PHPExcel_Style_Protection */
                    
51require_once 'PHPExcel/Style/Protection.php';
                    
52
                    
53/** PHPExcel_IComparable */
                    
54require_once 'PHPExcel/IComparable.php';
                    
55
                    
60 * @package    PHPExcel_Cell
                    
61 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
62 */
                    
62 */
                    
63class PHPExcel_Style implements PHPExcel_IComparable
                    
64{
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 534 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Shared_PasswordHasher */
                    
30require_once 'PHPExcel/Shared/PasswordHasher.php';
                    
31
                    
33/**
                    
34 * PHPExcel_Worksheet_Protection
                    
35 *
                    
37 * @package    PHPExcel_Worksheet
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 534 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Shared_PasswordHasher */
                    
30require_once 'PHPExcel/Shared/PasswordHasher.php';
                    
31
                    
33/**
                    
34 * PHPExcel_Worksheet_Protection
                    
35 *
                    
37 * @package    PHPExcel_Worksheet
                    
38 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
                
Post.php git://github.com/caferrari/vorticephp.git | PHP | 307 lines
                    
1<?php
                    
2/* 
                    
185		if (is_object($obj)) 
                    
186          foreach (get_object_vars($obj) as $c => $v) 
                    
187             self::setVal((isset($prefix[$c]) ? $prefix[$c] : '') . $c, stripslashes($v));
                    
196	{
                    
197		if (is_object($obj)) foreach (get_object_vars($obj) as $c => $v) self::setVal((isset($prefix[$c]) ? $prefix[$c] : '') . $c, stripslashes($v));
                    
198	}
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 421 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
41{
                    
128	 *
                    
129	 * @return PHPExcel_Style_Color
                    
130	 */
                    
                
DocumentLiteralWrapper.php git://github.com/zendframework/zf2.git | PHP | 183 lines
                    
1<?php
                    
2/**
                    
35 *
                    
36 * The document/literal wrapper pattern would lead php ext/soap to generate a
                    
37 * single "request" object that contains $x and $y properties. To solve this a
                    
41 * The input variable from a document/literal SOAP-call to the client
                    
42 * MyCalculatorServiceClient#add(10, 20) would lead PHP ext/soap to create
                    
43 * the following request object:
                    
126        $delegateArgs = array();
                    
127        foreach (get_object_vars($document) as $argName => $argValue) {
                    
128            if (!isset($params[$argName])) {
                    
                
DataDefinition.php git://github.com/drupal/drupal.git | PHP | 386 lines
                    
1<?php
                    
2
                    
305    // PHP's array access does not work correctly with isset(), so we have to
                    
306    // bake isset() in here. See https://bugs.php.net/bug.php?id=41727.
                    
307    return array_key_exists($offset, $this->definition) && isset($this->definition[$offset]);
                    
356    // Never serialize the typed data manager.
                    
357    $vars = get_object_vars($this);
                    
358    unset($vars['typedDataManager']);
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 245 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
41{	
                    
89    	$this->_horizontal			= PHPExcel_Style_Alignment::HORIZONTAL_GENERAL;
                    
90    	$this->_vertical			= PHPExcel_Style_Alignment::VERTICAL_BOTTOM;
                    
91    	$this->_textRotation		= 0;
                    
                
Pagination.php git://github.com/ushahidi/Ushahidi_Web.git | PHP | 236 lines
                    
1<?php defined('SYSPATH') OR die('No direct access allowed.');
                    
2/**
                    
4 *
                    
5 * $Id: Pagination.php 3917 2009-01-21 03:06:22Z zombor $
                    
6 *
                    
9 * @copyright  (c) 2007-2008 Kohana Team
                    
10 * @license    http://kohanaphp.com/license.html
                    
11 */
                    
197		// Return rendered pagination view
                    
198		return View::factory($this->directory.$style, get_object_vars($this))->render();
                    
199	}
                    
                
object.php http://skygames.googlecode.com/svn/trunk/ | PHP | 291 lines
                    
10 *
                    
11 * CakePHP(tm) :  Rapid Development Framework (http://www.cakephp.org)
                    
12 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
                    
18 * @copyright     Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
                    
19 * @link          http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
                    
20 * @package       cake
                    
133 *
                    
134 * @param $status see http://php.net/exit for values
                    
135 * @return void
                    
169		if (is_array($properties) && !empty($properties)) {
                    
170			$vars = get_object_vars($this);
                    
171			foreach ($properties as $key => $val) {
                    
179 * Used to report user friendly errors.
                    
180 * If there is a file app/error.php or app/app_error.php this file will be loaded
                    
181 * error.php is the AppError class it should extend ErrorHandler class.
                    
                
Protection.php git://github.com/Dolibarr/dolibarr.git | PHP | 282 lines
                    
1<?php
                    
2/**
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Style
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Protection implements PHPExcel_IComparable
                    
37{
                    
271	public function __clone() {
                    
272		$vars = get_object_vars($this);
                    
273		foreach ($vars as $key => $value) {
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 506 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
4 *
                    
5 * Copyright (c) 2006 - 2010 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
37{
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 320 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
41{	
                    
128     *
                    
129     * Returns the PHPExcel_Style_Alignment that is actual bound to PHPExcel_Style
                    
130	 *
                    
145     *
                    
146     * If no PHPExcel_Style_Alignment has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
147	 *
                    
                
Mysql.php http://lxsphp.googlecode.com/svn/trunk/ | PHP | 312 lines
                    
1<?php
                    
2/**
                    
4 * 
                    
5 * @version $Id: Mysql.php 338 2012-04-16 09:12:33Z linsir123 $
                    
6 * @package Db
                    
156		///
                    
157		$row = array_values(get_object_vars($this->_result[$y]));
                    
158		return isset($row[$x]) ? $row[$x] : null;
                    
174		///
                    
175		return get_object_vars($this->_result[$y]);
                    
176	}
                    
193			foreach($result as $row) {
                    
194				$row = array_values(get_object_vars($row));
                    
195				$array[$i++] = $row[$x];
                    
216			foreach($result as $row) 
                    
217				$array[$i++] = get_object_vars($row);
                    
218		}
                    
                
ListView.php https://code.google.com/p/vtiger-ru-fork/ | PHP | 356 lines
                    
1<?php
                    
2/*********************************************************************************
                    
15
                    
16require_once('Smarty_setup.php');
                    
17require_once("data/Tracker.php");
                    
17require_once("data/Tracker.php");
                    
18require_once('modules/Accounts/Accounts.php');
                    
19require_once('include/logging.php');
                    
19require_once('include/logging.php');
                    
20require_once('include/ListView/ListView.php');
                    
21require_once('include/utils/utils.php');
                    
21require_once('include/utils/utils.php');
                    
22require_once('modules/CustomView/CustomView.php');
                    
23require_once('include/database/Postgres8.php');
                    
54	$modObj->sortby = $order_by;
                    
55	$_SESSION['lvs'][$currentModule] = get_object_vars($modObj);
                    
56}
                    
                
questiontype_test.php git://github.com/moodle/moodle.git | PHP | 132 lines
                    
1<?php
                    
2// This file is part of Moodle - http://moodle.org/
                    
29global $CFG;
                    
30require_once($CFG->dirroot . '/question/engine/tests/helpers.php');
                    
31require_once($CFG->dirroot . '/question/type/random/questiontype.php');
                    
85                'createdby', 'modifiedby', 'idnumber', 'contextid', 'options', 'hints', 'categoryobject'],
                    
86                array_keys(get_object_vars($questiondata)));
                    
87        $this->assertEquals($category->id, $questiondata->category);
                    
99        // Options - not used.
                    
100        $this->assertEquals(['answers'], array_keys(get_object_vars($questiondata->options)));
                    
101        $this->assertEquals([], $questiondata->options->answers);
                    
                
RichText.php https://PHPExcel.svn.codeplex.com/svn | PHP | 250 lines
                    
32/** PHPExcel_Cell */
                    
33require_once 'PHPExcel/Cell.php';
                    
34
                    
41/** PHPExcel_RichText_Run */
                    
42require_once 'PHPExcel/RichText/Run.php';
                    
43
                    
44/** PHPExcel_Style_Font */
                    
45require_once 'PHPExcel/Style/Font.php';
                    
46
                    
51 * @package    PHPExcel
                    
52 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
53 */
                    
53 */
                    
54class PHPExcel_RichText implements PHPExcel_IComparable
                    
55{
                    
                
Borders.php git://github.com/Dolibarr/dolibarr.git | PHP | 506 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
4 *
                    
5 * Copyright (c) 2006 - 2011 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
37{
                    
                
Drawing.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 162 lines
                    
1<?php
                    
2/**
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet_Drawing
                    
22 * @package    PHPExcel_Worksheet_Drawing
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
28/**
                    
29 * PHPExcel_Worksheet_Drawing
                    
30 *
                    
32 * @package    PHPExcel_Worksheet_Drawing
                    
33 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
34 */
                    
34 */
                    
35class PHPExcel_Worksheet_Drawing extends PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
36{
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 601 lines
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
44{
                    
145		$this->_striketrough		= false;
                    
146		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
147
                    
                
RichText.php https://PHPExcel.svn.codeplex.com/svn | PHP | 281 lines
                    
32/** PHPExcel_Cell */
                    
33require_once 'PHPExcel/Cell.php';
                    
34
                    
41/** PHPExcel_RichText_Run */
                    
42require_once 'PHPExcel/RichText/Run.php';
                    
43
                    
44/** PHPExcel_Style_Font */
                    
45require_once 'PHPExcel/Style/Font.php';
                    
46
                    
51 * @package    PHPExcel_RichText
                    
52 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
53 */
                    
53 */
                    
54class PHPExcel_RichText implements PHPExcel_IComparable
                    
55{
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 546 lines
                    
4 *
                    
5 * Copyright (c) 2006 - 2010 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package    PHPExcel_Worksheet
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
280     * @param boolean $pValue
                    
281     * @return PHPExcel_Worksheet_Protection
                    
282     */
                    
300     * @param boolean $pValue
                    
301     * @return PHPExcel_Worksheet_Protection
                    
302     */
                    
                
Protection.php https://PHPExcel.svn.codeplex.com/svn | PHP | 534 lines
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package    PHPExcel_Worksheet
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_Shared_PasswordHasher */
                    
30require_once 'PHPExcel/Shared/PasswordHasher.php';
                    
31
                    
33/**
                    
34 * PHPExcel_Worksheet_Protection
                    
35 *
                    
37 * @package    PHPExcel_Worksheet
                    
38 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
                
Style.php https://PHPExcel.svn.codeplex.com/svn | PHP | 278 lines
                    
35/** PHPExcel_Style_Fill */
                    
36require_once 'PHPExcel/Style/Fill.php';
                    
37
                    
47/** PHPExcel_Style_Conditional */
                    
48require_once 'PHPExcel/Style/Conditional.php';
                    
49
                    
50/** PHPExcel_IComparable */
                    
51require_once 'PHPExcel/IComparable.php';
                    
52
                    
57 * @package    PHPExcel_Cell
                    
58 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
59 */
                    
59 */
                    
60class PHPExcel_Style implements PHPExcel_IComparable
                    
61{
                    
                
siteThemes.class.php git://github.com/webasyst/webasyst-framework.git | PHP | 334 lines
                    
1<?php
                    
2class siteThemes extends waTheme
                    
108    {
                    
109        //$info = array_merge($this->info,get_object_vars($this));
                    
110        self::prepare($this);
                    
196        $autoload = waAutoload::getInstance();
                    
197        $autoload->add('Archive_Tar','wa-installer/lib/vendors/PEAR/Tar.php');
                    
198        $autoload->add('PEAR','wa-installer/lib/vendors/PEAR/PEAR.php');
                    
259                        self::throwThemeException('UNEXPECTED_FILE_PATH',"{$file['filename']}. Expect files in [{$extract_path}] directory");
                    
260                    } elseif(preg_match('@\.(php\d*|pl)@', $file['filename'],$matches)) {
                    
261                        self::throwThemeException('UNEXPECTED_FILE_TYPE',$file['filename']);
                    
316        $autoload = waAutoload::getInstance();
                    
317        $autoload->add('Archive_Tar','wa-installer/lib/vendors/PEAR/Tar.php');
                    
318        $autoload->add('PEAR','wa-installer/lib/vendors/PEAR/PEAR.php');
                    
322            $tar_object = new Archive_Tar( $target_file, true );
                    
323            $tar_object->setIgnoreRegexp('@(\.(php\d?|svn|git|fw_|files\.md5$))@');
                    
324            $path = getcwd();
                    
                
DbUtil.php http://collectgame.googlecode.com/svn/trunk/ | PHP | 344 lines
                    
1<?php
                    
2/**
                    
201			foreach ( $this->last_result as $row ) {
                    
202				$key = array_shift( $var_by_ref = get_object_vars( $row ) );
                    
203				if ( ! isset( $new_array[ $key ] ) )
                    
212						// ...integer-keyed row arrays
                    
213						$new_array[] = array_values( get_object_vars( $row ) );
                    
214					} else {
                    
215						// ...column name-keyed row arrays
                    
216						$new_array[] = get_object_vars( $row );
                    
217					}
                    
243		} elseif ( $output == ARRAY_A ) {
                    
244			return $this->last_result[$y] ? get_object_vars( $this->last_result[$y] ) : null;
                    
245		} elseif ( $output == ARRAY_N ) {
                    
245		} elseif ( $output == ARRAY_N ) {
                    
246			return $this->last_result[$y] ? array_values( get_object_vars( $this->last_result[$y] ) ) : null;
                    
247		} else {
                    
                
Fill.php https://PHPExcel.svn.codeplex.com/svn | PHP | 413 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_Style_Color */
                    
30require_once 'PHPExcel/Style/Color.php';
                    
31
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Fill implements PHPExcel_IComparable
                    
44{
                    
128		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor);
                    
129		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
130
                    
                
filteroutput.php https://bitbucket.org/joomla/joomla-platform/ | PHP | 193 lines
                    
1<?php
                    
2/**
                    
37		{
                    
38			foreach (get_object_vars($mixed) as $k => $v)
                    
39			{
                    
                
HeadLink.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
17 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
                    
18 * @version    $Id: Placeholder.php 7078 2007-12-11 14:29:33Z matthew $
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
22/** Zend_View_Helper_Placeholder_Container_Standalone */
                    
23require_once 'Zend/View/Helper/Placeholder/Container/Standalone.php';
                    
24
                    
51     *
                    
52     * Use PHP_EOL as separator
                    
53     *
                    
58        parent::__construct();
                    
59        $this->setSeparator(PHP_EOL);
                    
60    }
                    
140            if (1 > $argc) {
                    
141                require_once 'Zend/View/Exception.php';
                    
142                throw new Zend_View_Exception(sprintf('%s requires at least one argument', $method));
                    
                
dumper.php git://github.com/campaignmonitor/createsend-php.git | PHP | 360 lines
                    
1<?php
                    
2/**
                    
5 *  @subpackage UnitTester
                    
6 *  @version    $Id: dumper.php 1723 2008-04-08 00:34:10Z lastcraft $
                    
7 */
                    
312        return $this->_describeArrayDifference(
                    
313                get_object_vars($first),
                    
314                get_object_vars($second),
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 256 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
41{
                    
68    /**
                    
69     * Create a new PHPExcel_Style_Color
                    
70     * 
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 256 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
41{
                    
68    /**
                    
69     * Create a new PHPExcel_Style_Color
                    
70     * 
                    
                
ini.php https://bitbucket.org/joomla/joomla-platform/ | PHP | 210 lines
                    
1<?php
                    
2/**
                    
40		// Iterate over the object to set the properties.
                    
41		foreach (get_object_vars($object) as $key => $value) {
                    
42			// If the value is an object then we need to put it in a local section.
                    
48				// Add the properties for this section.
                    
49				foreach (get_object_vars($value) as $k => $v) {
                    
50					$local[] = $k.'='.$this->_getValueAsINI($v);
                    
                
Widgets.php git://github.com/pyrocms/pyrocms.git | PHP | 497 lines
                    
1<?php defined('BASEPATH') OR exit('No direct script access allowed');
                    
2
                    
173
                    
174		$widget = (object) get_object_vars($this->_widget);
                    
175		$widget->slug = $slug;
                    
                
MemoryDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 239 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_BaseDrawing */
                    
36require_once 'PHPExcel/Worksheet/BaseDrawing.php';
                    
37
                    
38/** PHPExcel_Worksheet_Drawing_Shadow */
                    
39require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
40
                    
46 * @package    PHPExcel_Worksheet
                    
47 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
48 */
                    
48 */
                    
49class PHPExcel_Worksheet_MemoryDrawing extends PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable 
                    
50{	
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 482 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
37{
                    
159	 *
                    
160	 * @return PHPExcel_Worksheet
                    
161	 */
                    
                
Borders.php https://PHPExcel.svn.codeplex.com/svn | PHP | 347 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_Style_Border */
                    
30require_once 'PHPExcel/Style/Border.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Borders implements PHPExcel_IComparable
                    
44{
                    
                
compatibility.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 199 lines
                    
1<?php
                    
2/**
                    
4 * @package    SimpleTest
                    
5 * @version    $Id: compatibility.php 1723 2008-04-08 00:34:10Z lastcraft $
                    
6 */
                    
9 * Static methods for compatibility between different
                    
10 * PHP versions.
                    
11 * @package    SimpleTest
                    
16    /**
                    
17     * Creates a copy whether in PHP5 or PHP4.
                    
18     * @param object $object     Thing to copy.
                    
24    {
                    
25        if (version_compare(phpversion(), '5') >= 0)
                    
26        {
                    
75            }
                    
76            return SimpleTestCompatibility :: _isArrayOfIdenticalTypes(get_object_vars($first), get_object_vars($second));
                    
77        }
                    
                
Font.php git://github.com/benkeen/generatedata.git | PHP | 641 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
37{
                    
153			$this->_strikethrough	= NULL;
                    
154			$this->_color			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
                    
155		} else {
                    
155		} else {
                    
156			$this->_color	= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
157		}
                    
                
HashTable.php https://PHPExcel.svn.codeplex.com/svn | PHP | 210 lines
                    
22 * @package    PHPExcel
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_HashTable
                    
41{
                    
58     *
                    
59     * @param 	PHPExcel_IComparable[] $pSource	Optional source array to create HashTable from
                    
60     * @throws 	Exception
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 420 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
41{	
                    
144     *
                    
145     * Returns the PHPExcel_Style_Alignment that is actual bound to PHPExcel_Style
                    
146	 *
                    
161     *
                    
162     * If no PHPExcel_Style_Alignment has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
163	 *
                    
                
ListView.php https://code.google.com/p/vtiger-ru-fork/ | PHP | 270 lines
                    
1<?php
                    
2/*+********************************************************************************
                    
15
                    
16require_once('modules/Faq/Faq.php');
                    
17require_once('Smarty_setup.php');
                    
17require_once('Smarty_setup.php');
                    
18require_once('include/utils/utils.php');
                    
19require_once('include/ListView/ListView.php');
                    
19require_once('include/ListView/ListView.php');
                    
20require_once('modules/Faq/Faq.php');
                    
21require_once('modules/CustomView/CustomView.php');
                    
21require_once('modules/CustomView/CustomView.php');
                    
22require_once('include/database/Postgres8.php');
                    
23
                    
28
                    
29require_once($theme_path.'layout_utils.php');
                    
30
                    
                
Alignment.php git://github.com/Dolibarr/dolibarr.git | PHP | 482 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
37{
                    
159	 *
                    
160	 * @return PHPExcel_Worksheet
                    
161	 */
                    
                
BaseDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 437 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_Drawing_Shadow */
                    
36require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
37
                    
42 * @package    PHPExcel_Worksheet
                    
43 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
44 */
                    
44 */
                    
45class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
46{		
                    
215    		} else {
                    
216    			throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
217    		}
                    
                
HeaderFooterDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 371 lines
                    
37/** PHPExcel_IComparable */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
39
                    
40/** PHPExcel_Worksheet */
                    
41require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet.php';
                    
42
                    
43/** PHPExcel_Worksheet_BaseDrawing */
                    
44require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet/BaseDrawing.php';
                    
45
                    
46/** PHPExcel_Worksheet_Drawing */
                    
47require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet/Drawing.php';
                    
48
                    
56 */
                    
57class PHPExcel_Worksheet_HeaderFooterDrawing extends PHPExcel_Worksheet_Drawing implements PHPExcel_IComparable 
                    
58{	
                    
                
class-wp-customize-panel.php git://github.com/wordpress/wordpress.git | PHP | 394 lines
                    
1<?php
                    
2/**
                    
156	public function __construct( $manager, $id, $args = array() ) {
                    
157		$keys = array_keys( get_object_vars( $this ) );
                    
158		foreach ( $keys as $key ) {
                    
324		?>
                    
325		<script type="text/html" id="tmpl-customize-panel-<?php echo esc_attr( $this->type ); ?>-content">
                    
326			<?php $this->content_template(); ?>
                    
327		</script>
                    
328		<script type="text/html" id="tmpl-customize-panel-<?php echo esc_attr( $this->type ); ?>">
                    
329			<?php $this->render_template(); ?>
                    
330		</script>
                    
331		<?php
                    
332	}
                    
348				{{ data.title }}
                    
349				<span class="screen-reader-text"><?php _e( 'Press return or enter to open this panel' ); ?></span>
                    
350			</h3>
                    
                
fields.php http://flexicontent.googlecode.com/svn/trunk/ | PHP | 177 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * @version 1.5 stable $Id: fields.php 1683 2013-06-02 07:51:11Z ggppdk $
                    
4 * @package Joomla
                    
52			$node = & $this->element;
                    
53			$attributes = get_object_vars($node->attributes());
                    
54			$attributes = $attributes['@attributes'];
                    
                
Conditional.php https://PHPExcel.svn.codeplex.com/svn | PHP | 204 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/** PHPExcel_Style */
                    
30require_once 'PHPExcel/Style.php';
                    
31
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
40 * @package    PHPExcel_Style
                    
41 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
42 */
                    
42 */
                    
43class PHPExcel_Style_Conditional implements PHPExcel_IComparable
                    
44{
                    
                
object.php http://noserub.googlecode.com/svn/trunk/ | PHP | 312 lines
                    
11 *
                    
12 * CakePHP(tm) :  Rapid Development Framework (http://www.cakephp.org)
                    
13 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
                    
19 * @copyright     Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
                    
20 * @link          http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
                    
21 * @package       cake
                    
154 * @param string $msg Log message
                    
155 * @param integer $type Error type constant. Defined in app/config/core.php.
                    
156 * @return boolean Success of log write
                    
180		if (is_array($properties) && !empty($properties)) {
                    
181			$vars = get_object_vars($this);
                    
182			foreach ($properties as $key => $val) {
                    
191 * Used to report user friendly errors.
                    
192 * If there is a file app/error.php or app/app_error.php this file will be loaded
                    
193 * error.php is the AppError class it should extend ErrorHandler class.
                    
                
DocumentSecurity.php git://github.com/moodle/moodle.git | PHP | 223 lines
                    
21 *
                    
22 * @category   PHPExcel
                    
23 * @package    PHPExcel
                    
23 * @package    PHPExcel
                    
24 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
65    /**
                    
66     * Create a new PHPExcel_DocumentSecurity
                    
67     */
                    
103     * @param boolean $pValue
                    
104     * @return PHPExcel_DocumentSecurity
                    
105     */
                    
125     * @param boolean $pValue
                    
126     * @return PHPExcel_DocumentSecurity
                    
127     */
                    
                
Fill.php https://PHPExcel.svn.codeplex.com/svn | PHP | 332 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
119		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE);
                    
120		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
121    }
                    
141     *
                    
142     * Returns the PHPExcel_Style_Fill that is actual bound to PHPExcel_Style
                    
143	 *
                    
158     *
                    
159     * If no PHPExcel_Style_Fill has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
160	 *
                    
                
BaseDrawing.php https://PHPExcel.svn.codeplex.com/svn | PHP | 505 lines
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
35/** PHPExcel_Worksheet_Drawing_Shadow */
                    
36require_once 'PHPExcel/Worksheet/Drawing/Shadow.php';
                    
37
                    
42 * @package    PHPExcel_Worksheet
                    
43 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
44 */
                    
44 */
                    
45class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
46{		
                    
252    		} else {
                    
253    			throw new Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
254    		}
                    
                
NodeRevisionsAllTest.php git://github.com/drupal/drupal.git | PHP | 188 lines
                    
1<?php
                    
2
                    
35
                    
36    $settings = get_object_vars($node);
                    
37    $settings['revision'] = 1;
                    
                
Alignment.php https://PHPExcel.svn.codeplex.com/svn | PHP | 493 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Alignment implements PHPExcel_IComparable
                    
41{	
                    
118    /**
                    
119     * Create a new PHPExcel_Style_Alignment
                    
120     */
                    
                
Cell.php https://PHPExcel.svn.codeplex.com/svn | PHP | 424 lines
                    
29/** PHPExcel_Cell_DataType */
                    
30require_once 'PHPExcel/Cell/DataType.php';
                    
31
                    
35/** PHPExcel_Worksheet */
                    
36require_once 'PHPExcel/Worksheet.php';
                    
37
                    
38/** PHPExcel_Calculation */
                    
39require_once 'PHPExcel/Calculation.php';
                    
40
                    
46 * @package    PHPExcel
                    
47 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
48 */
                    
402			return 1;
                    
403		} elseif (PHPExcel_Cell::columnIndexFromString($a->getColumn()) < PHPExcel_Cell::columnIndexFromString($b->getColumn())) {
                    
404			return -1;
                    
                
PageSetup.php https://PHPExcel.svn.codeplex.com/svn | PHP | 351 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
4 *
                    
5 * Copyright (c) 2006 - 2007 PHPExcel
                    
6 *
                    
22 * @package    PHPExcel_Worksheet
                    
23 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/lgpl.txt	LGPL
                    
29/**
                    
30 * PHPExcel_Worksheet_PageSetup
                    
31 *
                    
104 * @package    PHPExcel_Worksheet
                    
105 * @copyright  Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
106 */
                    
                
flexiusergroup.php http://flexicontent.googlecode.com/svn/trunk/ | PHP | 180 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * @version 1.5 stable $Id: flexiusergroup.php 1348 2012-06-19 02:38:15Z ggppdk $
                    
4 * @package Joomla
                    
58			$node = & $this->element;
                    
59			$attributes = get_object_vars($node->attributes());
                    
60			$attributes = $attributes['@attributes'];
                    
                
fccheckbox.php http://flexicontent.googlecode.com/svn/trunk/ | PHP | 135 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * @version 1.5 stable $Id: fccheckbox.php 967 2011-11-21 00:01:36Z ggppdk $
                    
4 * @package Joomla
                    
44			$node = & $this->element;
                    
45			$attributes = get_object_vars($node->attributes());
                    
46			$attributes = $attributes['@attributes'];
                    
                
BaseDrawing.php git://github.com/moodle/moodle.git | PHP | 508 lines
                    
23 * @package    PHPExcel_Worksheet
                    
24 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
25 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
27 */
                    
28class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable
                    
29{
                    
136        $this->rotation           = 0;
                    
137        $this->shadow             = new PHPExcel_Worksheet_Drawing_Shadow();
                    
138
                    
218        if (is_null($this->worksheet)) {
                    
219            // Add drawing to PHPExcel_Worksheet
                    
220            $this->worksheet = $pValue;
                    
238            } else {
                    
239                throw new PHPExcel_Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet.");
                    
240            }
                    
                
compatibility.php git://github.com/silverstripe/sapphire.git | PHP | 173 lines
                    
1<?php
                    
2/**
                    
4 *  @package    SimpleTest
                    
5 *  @version    $Id: compatibility.php 1723 2008-04-08 00:34:10Z lastcraft $
                    
6 */
                    
9 *  Static methods for compatibility between different
                    
10 *  PHP versions.
                    
11 *  @package    SimpleTest
                    
15    /**
                    
16     *    Creates a copy whether in PHP5 or PHP4.
                    
17     *    @param object $object     Thing to copy.
                    
22    static function copy($object) {
                    
23        if (version_compare(phpversion(), '5') >= 0) {
                    
24            eval('$copy = clone $object;');
                    
30    /**
                    
31     *    Identity test. Drops back to equality + types for PHP5
                    
32     *    objects as the === operator counts as the
                    
                
Color.php https://PHPExcel.svn.codeplex.com/svn | PHP | 256 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
29/** PHPExcel_IComparable */
                    
30require_once 'PHPExcel/IComparable.php';
                    
31
                    
37 * @package    PHPExcel_Style
                    
38 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
39 */
                    
39 */
                    
40class PHPExcel_Style_Color implements PHPExcel_IComparable
                    
41{
                    
68    /**
                    
69     * Create a new PHPExcel_Style_Color
                    
70     * 
                    
                
DTO.php git://github.com/caferrari/vorticephp.git | PHP | 155 lines
                    
1<?php
                    
2/* 
                    
53		if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) return;
                    
54		foreach (get_object_vars($this) as $p) $this->$p = addslashes($this->$p);
                    
55	}
                    
62	public static function unescape(){
                    
63		foreach (get_object_vars($this) as $p) $this->$p = stripslashes($this->$p);
                    
64	}
                    
                
js.php https://bitbucket.org/wez/mtrack/ | PHP | 148 lines
                    
1<?php # vim:ts=2:sw=2:et:
                    
2/* For licensing and copyright terms, see the file named LICENSE */
                    
2/* For licensing and copyright terms, see the file named LICENSE */
                    
3include '../inc/common.php';
                    
4
                    
112if (isset($tree->Templates)) {
                    
113  $templates = array_keys(get_object_vars($tree->Templates));
                    
114  natsort($templates);
                    
                
class-wp-ajax-response.php git://github.com/wordpress/wordpress.git | PHP | 163 lines
                    
1<?php
                    
2/**
                    
100					$class      = ' class="' . get_class( $error_data ) . '"';
                    
101					$error_data = get_object_vars( $error_data );
                    
102				}
                    
                
 

Source

Language