<?php class test { public function __construct() { print_r( $this->defaults() ); } private function defaults(){ return array( 'allowFileManager' => true, 'allowMediaUpload' => true, 'allowFlashUpload' => true, 'allowImageUpload' => true, 'shadowMode' => false, 'width' => '100%', 'height' => '350px', 'uploadJson' => 'test', ); } } new test();
You have javascript disabled. You will not be able to edit any code.