/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1592)
1580 gT("Small screens"), 1581 gT("Off")), 1582 $value 1583 ); 1584 } else { 1585 $oOptions[$key] = str_replace( 1586 array('on', 'off', 'top', 'bottom'), 1587 array( 1588 gT("Yes"), 1589 gT("No"), 1590 gT("Top"), 1591 gT("Bottom")), 1592 $value 1593 ); 1594 } 1595 } 1596 return $oOptions; 1597 } 1598 }
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1592): str_replace(array("on", "off", "top", "bottom"), array("Oui", "Non", "Haut", "Bas"), stdClass) 1587 array( 1588 gT("Yes"), 1589 gT("No"), 1590 gT("Top"), 1591 gT("Bottom")), 1592 $value 1593 ); 1594 } 1595 } 1596 return $oOptions; 1597 } |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1021): TemplateConfiguration::translateOptionLabels(array("animatebody"
=> stdClass, "hideprivacyinfo" => stdClass, "container" =>
stdClass, "showpopups" => stdClass, ...)) 1016 $oTemplate->setToInherit(); 1017 $oTemplate->setOptions(); 1018 $oTemplate->setOptionInheritance(); 1019 1020 $oOptions = (array) $oSimpleInheritanceTemplate->oOptions; 1021 $oOptions = TemplateConfiguration::translateOptionLabels($oOptions); 1022 1023 //We add some extra values to the option page 1024 //This is just a dirty hack, and somewhere in the future we will correct it 1025 $renderArray['oParentOptions'] = array_merge( 1026 ($oOptions), |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CComponent.php(111): TemplateConfiguration->getOptionPage() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(145): CComponent->__get("optionPage") 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1479): CActiveRecord->__get("optionPage") 1474 // NOTE: this is object recursive (if parent configuration field is set to inherit, 1475 // then it will lead to this method again.) 1476 $sAttribute = $this->getParentConfiguration()->$name; 1477 } 1478 } else { 1479 $sAttribute = parent::__get($name); 1480 } 1481 1482 return $sAttribute; 1483 } 1484 |
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/admin/themeoptions.php(602): TemplateConfiguration->__get("optionPage") 597 598 if ($aOptionAttributes['optionsPage'] == 'core') { 599 App()->clientScript->registerPackage('themeoptions-core'); 600 $templateOptionPage = ''; 601 } else { 602 $templateOptionPage = $oModelWithInheritReplacement->optionPage; 603 } 604 605 $oSimpleInheritance = Template::getInstance( 606 $oModelWithInheritReplacement->sTemplateName, 607 $sid, |
#6 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/admin/themeoptions.php(304): themeoptions->updateCommon(TemplateConfiguration, "593843") 299 if ($model->save()) { 300 Yii::app()->user->setFlash('success', gT('Theme options saved.')); 301 $this->getController()->redirect(Yii::app()->getController()->createUrl("/admin/themeoptions/sa/updatesurvey", ['surveyid'=>$sid, 'sid'=>$sid])); 302 } 303 } 304 $this->updateCommon($model, $sid); 305 } else { 306 Yii::app()->setFlashMessage(gT("We are sorry but you don't have permissions to do this."), 'error'); 307 $this->getController()->redirect(array('admin/survey/sa/view/surveyid/'.$sid)); 308 } 309 } |
#7 |
unknown(0): themeoptions->updatesurvey("593843")
|
#8 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(themeoptions, array("593843")) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#9 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(86): CAction->runWithParamsInternal(themeoptions,
ReflectionMethod, array("surveyid" => "593843", "gsid" => "1",
"sa" => "updatesurvey", "iSurveyId" => "593843", ...)) 81 $oMethod = new ReflectionMethod($this, $sDefault); 82 } 83 84 // We're all good to go, let's execute it 85 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 86 return parent::runWithParamsInternal($this, $oMethod, $params); 87 } 88 89 /** 90 * Some functions have different parameters, which are just an alias of the 91 * usual parameters we're getting in the url. This function just populates |
#10 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("surveyid" => "593843", "gsid" => "1", "sa" => "updatesurvey", "iSurveyId" => "593843", ...)) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#11 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(286): CController->runAction(themeoptions) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#12 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(265): CController->runActionWithFilters(themeoptions, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#13 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(180): CController->run("themeoptions") 175 } 176 177 $this->runModuleController($action); 178 179 180 return parent::run($action); 181 } 182 183 /** 184 * Starting with LS4, 3rd party developper can extends any of the LimeSurve controllers. 185 * |
#14 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): AdminController->run("themeoptions") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#15 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/themeoptions/sa/updatesurvey") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#16 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#17 |
+
–
/mnt/data/shnoulle/nginx/www/master/index.php(182): CApplication->run() 177 require_once APPPATH . 'core/LSYii_Application' . EXT; 178 179 $config = require_once(APPPATH . 'config/internal' . EXT); 180 181 Yii::$enableIncludePath = false; 182 Yii::createApplication('LSYii_Application', $config)->run(); 183 184 /* End of file index.php */ 185 /* Location: ./index.php */ |
Journal d'application | ||||
---|---|---|---|---|
Heure | Niveau | Categorie | Message | |
07:09:31.823944 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [ajaxmode] => 'off' [brandlogo] => 'on' [container] => 'off' [hideprivacyinfo] => 'off' [brandlogofile] => null [font] => 'noto' [animatebody] => 'off' [showpopups] => '0' [showclearall] => 'on' [questionhelptextposition] => 'top' [fixnumauto] => 'enable' ) |
|
07:09:31.825933 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [animatebody] => stdClass#2 ( [@attributes] => stdClass#3 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Animate body' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [hideprivacyinfo] => stdClass#4 ( [@attributes] => stdClass#5 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Hide privacy info' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [container] => stdClass#6 ( [@attributes] => stdClass#7 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Survey container' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [showpopups] => stdClass#8 ( [@attributes] => stdClass#9 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show popups' [options] => '1|0|-1' [optionlabels] => 'Popup|On page|No' ) [0] => '1' ) [showclearall] => stdClass#10 ( [@attributes] => stdClass#11 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show Clear All button' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [questionhelptextposition] => stdClass#12 ( [@attributes] => stdClass#13 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Question help text position' [options] => 'top|bottom' [optionlabels] => 'Top|Bottom' ) [0] => 'top' ) [fixnumauto] => stdClass#14 ( [@attributes] => stdClass#15 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Fix automatically numeric value' [options] => 'enable|partial|disable' [optionlabels] => 'Yes|For expression|No' ) [0] => 'off' ) [brandlogo] => stdClass#16 ( [@attributes] => stdClass#17 ( [type] => 'buttons' [category] => 'Images' [width] => '4' [title] => 'Logo' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [brandlogofile] => stdClass#18 ( [@attributes] => stdClass#19 ( [type] => 'dropdown' [category] => 'Images' [width] => '6' [title] => 'Logo file' [parent] => 'brandlogo' ) [0] => 'themes/survey/vanilla/files/logo.png' ) [font] => stdClass#20 ( [@attributes] => stdClass#21 ( [type] => 'dropdown' [category] => 'Fonts' [width] => '12' [title] => 'Fonts' [parent] => 'font' ) [dropdownoptions] => stdClass#22 ( [optgroup] => stdClass#23 ( [@attributes] => stdClass#24 ( [label] => 'User browser' ) [option] => array ( 0 => stdClass#25 ( [@attributes] => stdClass#26 ( [class] => 'font-georgia ' [value] => 'georgia' [data-font-package] => 'websafe' ) [0] => 'Georgia' ) 1 => stdClass#27 ( [@attributes] => stdClass#28 ( [class] => 'font-palatino ' [value] => 'palatino' [data-font-package] => 'websafe' ) [0] => 'Palatino Linotype' ) 2 => stdClass#29 ( [@attributes] => stdClass#30 ( [class] => 'font-times_new_roman ' [value] => 'times_new_roman' [data-font-package] => 'websafe' ) [0] => 'Times New Roman' ) 3 => stdClass#31 ( [@attributes] => stdClass#32 ( [class] => 'font-arial ' [value] => 'arial' [data-font-package] => 'websafe' ) [0] => 'Arial' ) 4 => stdClass#33 ( [@attributes] => stdClass#34 ( [class] => 'font-arial_black ' [value] => 'arial_black' [data-font-package] => 'websafe' ) [0] => 'Arial Black' ) 5 => stdClass#35 ( [@attributes] => stdClass#36 ( [class] => 'font-comic_sans ' [value] => 'comic_sans' [data-font-package] => 'websafe' ) [0] => 'Comic Sans' ) 6 => stdClass#37 ( [@attributes] => stdClass#38 ( [class] => 'font-impact ' [value] => 'impact' [data-font-package] => 'websafe' ) [0] => 'Impact' ) 7 => stdClass#39 ( [@attributes] => stdClass#40 ( [class] => 'font-lucida_sans ' [value] => 'lucida_sans' [data-font-package] => 'websafe' ) [0] => 'Lucida Sans' ) 8 => stdClass#41 ( [@attributes] => stdClass#42 ( [class] => 'font-trebuchet ' [value] => 'trebuchet' [data-font-package] => 'websafe' ) [0] => 'Trebuchet' ) 9 => stdClass#43 ( [@attributes] => stdClass#44 ( [class] => 'font-courier ' [value] => 'courier' [data-font-package] => 'websafe' ) [0] => 'Courier New' ) 10 => stdClass#45 ( [@attributes] => stdClass#46 ( [class] => 'font-lucida_console ' [value] => 'lucida_console' [data-font-package] => 'websafe' ) [0] => 'Lucida Console' ) ) ) ) ) ) |
|
07:09:31.827104 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [ajaxmode] => 'off' [brandlogo] => 'on' [container] => 'off' [hideprivacyinfo] => 'off' [brandlogofile] => null [font] => 'noto' [animatebody] => 'off' [showpopups] => '0' [showclearall] => 'on' [questionhelptextposition] => 'top' [fixnumauto] => 'enable' ) |
|
07:09:31.828031 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [animatebody] => stdClass#2 ( [@attributes] => stdClass#3 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Animate body' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [hideprivacyinfo] => stdClass#4 ( [@attributes] => stdClass#5 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Hide privacy info' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [container] => stdClass#6 ( [@attributes] => stdClass#7 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Survey container' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [showpopups] => stdClass#8 ( [@attributes] => stdClass#9 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show popups' [options] => '1|0|-1' [optionlabels] => 'Popup|On page|No' ) [0] => '1' ) [showclearall] => stdClass#10 ( [@attributes] => stdClass#11 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show Clear All button' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [questionhelptextposition] => stdClass#12 ( [@attributes] => stdClass#13 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Question help text position' [options] => 'top|bottom' [optionlabels] => 'Top|Bottom' ) [0] => 'top' ) [fixnumauto] => stdClass#14 ( [@attributes] => stdClass#15 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Fix automatically numeric value' [options] => 'enable|partial|disable' [optionlabels] => 'Yes|For expression|No' ) [0] => 'off' ) [brandlogo] => stdClass#16 ( [@attributes] => stdClass#17 ( [type] => 'buttons' [category] => 'Images' [width] => '4' [title] => 'Logo' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [brandlogofile] => stdClass#18 ( [@attributes] => stdClass#19 ( [type] => 'dropdown' [category] => 'Images' [width] => '6' [title] => 'Logo file' [parent] => 'brandlogo' ) [0] => 'themes/survey/vanilla/files/logo.png' ) [font] => stdClass#20 ( [@attributes] => stdClass#21 ( [type] => 'dropdown' [category] => 'Fonts' [width] => '12' [title] => 'Fonts' [parent] => 'font' ) [dropdownoptions] => stdClass#22 ( [optgroup] => stdClass#23 ( [@attributes] => stdClass#24 ( [label] => 'User browser' ) [option] => array ( 0 => stdClass#25 ( [@attributes] => stdClass#26 ( [class] => 'font-georgia ' [value] => 'georgia' [data-font-package] => 'websafe' ) [0] => 'Georgia' ) 1 => stdClass#27 ( [@attributes] => stdClass#28 ( [class] => 'font-palatino ' [value] => 'palatino' [data-font-package] => 'websafe' ) [0] => 'Palatino Linotype' ) 2 => stdClass#29 ( [@attributes] => stdClass#30 ( [class] => 'font-times_new_roman ' [value] => 'times_new_roman' [data-font-package] => 'websafe' ) [0] => 'Times New Roman' ) 3 => stdClass#31 ( [@attributes] => stdClass#32 ( [class] => 'font-arial ' [value] => 'arial' [data-font-package] => 'websafe' ) [0] => 'Arial' ) 4 => stdClass#33 ( [@attributes] => stdClass#34 ( [class] => 'font-arial_black ' [value] => 'arial_black' [data-font-package] => 'websafe' ) [0] => 'Arial Black' ) 5 => stdClass#35 ( [@attributes] => stdClass#36 ( [class] => 'font-comic_sans ' [value] => 'comic_sans' [data-font-package] => 'websafe' ) [0] => 'Comic Sans' ) 6 => stdClass#37 ( [@attributes] => stdClass#38 ( [class] => 'font-impact ' [value] => 'impact' [data-font-package] => 'websafe' ) [0] => 'Impact' ) 7 => stdClass#39 ( [@attributes] => stdClass#40 ( [class] => 'font-lucida_sans ' [value] => 'lucida_sans' [data-font-package] => 'websafe' ) [0] => 'Lucida Sans' ) 8 => stdClass#41 ( [@attributes] => stdClass#42 ( [class] => 'font-trebuchet ' [value] => 'trebuchet' [data-font-package] => 'websafe' ) [0] => 'Trebuchet' ) 9 => stdClass#43 ( [@attributes] => stdClass#44 ( [class] => 'font-courier ' [value] => 'courier' [data-font-package] => 'websafe' ) [0] => 'Courier New' ) 10 => stdClass#45 ( [@attributes] => stdClass#46 ( [class] => 'font-lucida_console ' [value] => 'lucida_console' [data-font-package] => 'websafe' ) [0] => 'Lucida Console' ) ) ) ) ) ) |
|
07:09:31.828109 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [ajaxmode] => 'off' [brandlogo] => 'on' [container] => 'off' [hideprivacyinfo] => 'off' [brandlogofile] => null [font] => 'noto' [animatebody] => 'off' [showpopups] => '0' [showclearall] => 'on' [questionhelptextposition] => 'top' [fixnumauto] => 'enable' ) |
|
07:09:31.829103 | trace | vardump | /mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php (1527): stdClass#1 ( [animatebody] => stdClass#2 ( [@attributes] => stdClass#3 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Animate body' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [hideprivacyinfo] => stdClass#4 ( [@attributes] => stdClass#5 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Hide privacy info' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [container] => stdClass#6 ( [@attributes] => stdClass#7 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Survey container' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [showpopups] => stdClass#8 ( [@attributes] => stdClass#9 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show popups' [options] => '1|0|-1' [optionlabels] => 'Popup|On page|No' ) [0] => '1' ) [showclearall] => stdClass#10 ( [@attributes] => stdClass#11 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Show Clear All button' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'off' ) [questionhelptextposition] => stdClass#12 ( [@attributes] => stdClass#13 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Question help text position' [options] => 'top|bottom' [optionlabels] => 'Top|Bottom' ) [0] => 'top' ) [fixnumauto] => stdClass#14 ( [@attributes] => stdClass#15 ( [type] => 'buttons' [category] => 'Simple options' [width] => '4' [title] => 'Fix automatically numeric value' [options] => 'enable|partial|disable' [optionlabels] => 'Yes|For expression|No' ) [0] => 'off' ) [brandlogo] => stdClass#16 ( [@attributes] => stdClass#17 ( [type] => 'buttons' [category] => 'Images' [width] => '4' [title] => 'Logo' [options] => 'on|off' [optionlabels] => 'Yes|No' ) [0] => 'on' ) [brandlogofile] => stdClass#18 ( [@attributes] => stdClass#19 ( [type] => 'dropdown' [category] => 'Images' [width] => '6' [title] => 'Logo file' [parent] => 'brandlogo' ) [0] => 'themes/survey/vanilla/files/logo.png' ) [font] => stdClass#20 ( [@attributes] => stdClass#21 ( [type] => 'dropdown' [category] => 'Fonts' [width] => '12' [title] => 'Fonts' [parent] => 'font' ) [dropdownoptions] => stdClass#22 ( [optgroup] => stdClass#23 ( [@attributes] => stdClass#24 ( [label] => 'User browser' ) [option] => array ( 0 => stdClass#25 ( [@attributes] => stdClass#26 ( [class] => 'font-georgia ' [value] => 'georgia' [data-font-package] => 'websafe' ) [0] => 'Georgia' ) 1 => stdClass#27 ( [@attributes] => stdClass#28 ( [class] => 'font-palatino ' [value] => 'palatino' [data-font-package] => 'websafe' ) [0] => 'Palatino Linotype' ) 2 => stdClass#29 ( [@attributes] => stdClass#30 ( [class] => 'font-times_new_roman ' [value] => 'times_new_roman' [data-font-package] => 'websafe' ) [0] => 'Times New Roman' ) 3 => stdClass#31 ( [@attributes] => stdClass#32 ( [class] => 'font-arial ' [value] => 'arial' [data-font-package] => 'websafe' ) [0] => 'Arial' ) 4 => stdClass#33 ( [@attributes] => stdClass#34 ( [class] => 'font-arial_black ' [value] => 'arial_black' [data-font-package] => 'websafe' ) [0] => 'Arial Black' ) 5 => stdClass#35 ( [@attributes] => stdClass#36 ( [class] => 'font-comic_sans ' [value] => 'comic_sans' [data-font-package] => 'websafe' ) [0] => 'Comic Sans' ) 6 => stdClass#37 ( [@attributes] => stdClass#38 ( [class] => 'font-impact ' [value] => 'impact' [data-font-package] => 'websafe' ) [0] => 'Impact' ) 7 => stdClass#39 ( [@attributes] => stdClass#40 ( [class] => 'font-lucida_sans ' [value] => 'lucida_sans' [data-font-package] => 'websafe' ) [0] => 'Lucida Sans' ) 8 => stdClass#41 ( [@attributes] => stdClass#42 ( [class] => 'font-trebuchet ' [value] => 'trebuchet' [data-font-package] => 'websafe' ) [0] => 'Trebuchet' ) 9 => stdClass#43 ( [@attributes] => stdClass#44 ( [class] => 'font-courier ' [value] => 'courier' [data-font-package] => 'websafe' ) [0] => 'Courier New' ) 10 => stdClass#45 ( [@attributes] => stdClass#46 ( [class] => 'font-lucida_console ' [value] => 'lucida_console' [data-font-package] => 'websafe' ) [0] => 'Lucida Console' ) ) ) ) ) ) |