Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 4.26 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. object Request(9) {
  2.     public route => object Route(4) {
  3.         protected _uri => string(19) "guide/api(/<class>)"
  4.         protected _regex => array(1) (
  5.             "class" => string(13) "[a-zA-Z0-9_]+"
  6.         )
  7.         protected _defaults => array(3) (
  8.             "controller" => string(9) "userguide"
  9.             "action" => string(3) "api"
  10.             "class" => NULL
  11.         )
  12.         protected _route_regex => string(45) "#^guide/api(?:/(?P<class>[a-zA-Z0-9_]+))?$#uD"
  13.     }
  14.     public status => integer 200
  15.     public response => object View(2) {
  16.         protected _file => string(96) "/home/kohana/sites/www.kohanaframework.org/public/modules/userguide/views/userguide/template.php"
  17.         protected _data => array(7) (
  18.             "title" => string(7) "Request"
  19.             "content" => object View(2) {
  20.                 protected _file => string(97) "/home/kohana/sites/www.kohanaframework.org/public/modules/userguide/views/userguide/api/class.php"
  21.                 protected _data => array(2) (
  22.                     "doc" => object Kodoc_Class(5) {
  23.                         public class => object ReflectionClass(1) {
  24.                             public name => string(7) "Request"
  25.                         }
  26.                         public modifiers => NULL
  27.                         public description => string(178) "<p>Request and response wrapper. Uses the <a href="/guide/api/Route">Route</a> class to determine what
  28. <a href="/guide/api/Controller">Controller</a> to send the request to.</p>
  29. "
  30.                         public tags => array(5) (
  31.                             ...
  32.                         )
  33.                         public constants => array(0)
  34.                     }
  35.                     "route" => object Route(4) {
  36.                         protected _uri => string(19) "guide/api(/<class>)"
  37.                         protected _regex => array(1) (
  38.                             ...
  39.                         )
  40.                         protected _defaults => array(3) (
  41.                             ...
  42.                         )
  43.                         protected _route_regex => string(45) "#^guide/api(?:/(?P<class>[a-zA-Z0-9_]+))?$#uD"
  44.                     }
  45.                 )
  46.             }
  47.             "menu" => object View(2) {
  48.                 protected _file => string(96) "/home/kohana/sites/www.kohanaframework.org/public/modules/userguide/views/userguide/api/menu.php"
  49.                 protected _data => array(1) (
  50.                     "menu" => array(12) (
  51.                         ...
  52.                     )
  53.                 )
  54.             }
  55.             "breadcrumb" => array(3) (
  56.                 "guide" => string(10) "User Guide"
  57.                 "guide/api" => string(11) "API Browser"
  58.                 0 => string(7) "Request"
  59.             )
  60.             "styles" => array(5) (
  61.                 "guide/media/css/print.css" => string(5) "print"
  62.                 "guide/media/css/screen.css" => string(6) "screen"
  63.                 "guide/media/css/kodoc.css" => string(6) "screen"
  64.                 "guide/media/css/shCore.css" => string(6) "screen"
  65.                 "guide/media/css/shThemeKodoc.css" => string(6) "screen"
  66.             )
  67.             "scripts" => array(4) (
  68.                 0 => string(28) "guide/media/js/jquery.min.js"
  69.                 1 => string(23) "guide/media/js/kodoc.js"
  70.                 2 => string(24) "guide/media/js/shCore.js"
  71.                 3 => string(28) "guide/media/js/shBrushPhp.js"
  72.             )
  73.             "translations" => array(8) (
  74.                 "de-de" => string(7) "Deutsch"
  75.                 "en-us" => string(7) "English"
  76.                 "es-es" => string(8) "Español"
  77.                 "zh-cn" => string(12) "简体中文"
  78.                 "ru-ru" => string(14) "Русский"
  79.                 "fr-fr" => string(9) "Français"
  80.                 "he-il" => string(10) "עברית"
  81.                 "nl" => string(10) "Nederlands"
  82.             )
  83.         )
  84.     }
  85.     public headers => array(1) (
  86.         "Content-Type" => string(24) "text/html; charset=utf-8"
  87.     )
  88.     public directory => string(0) ""
  89.     public controller => string(9) "userguide"
  90.     public action => string(3) "api"
  91.     public uri => string(17) "guide/api/Request"
  92.     protected _params => array(1) (
  93.         "class" => string(7) "Request"
  94.     )
  95. }