<?php
 
$showsource = true;
 
 
 
include_once '../d3.classes.inc.php';
 
include_once '../extjs.class.inc.php';
 
 
ext()->define('Ext.app.Portal', o3(array(
 
  
 
  "extend" => 'Ext.container.Viewport',
 
  "uses" => array('Ext.app.PortalPanel', 'Ext.app.PortalColumn', 'Ext.app.GridPortlet', 'Ext.app.ChartPortlet'),
 
  "getTools" => f3()->add(
 
    array(o3(array(
 
        "xtype" => 'tool',
 
        "type" => 'gear',
 
    )))
 
  )->getReturn(),
 
 
)))->colon()->linebreak()->toStack();
 
 
echo stack();
 
?>
 
 
 |