APPPATH/views/front/v_content1lvl.php [ 10 ]
5 <div class="leftc">
6 <?= $contactsw ?>
7 </div>
8
9 <? endif; ?>
10 <? if ($banner == false): ?>
11 <div id="networx_form_container" style="margin:0px;padding:0 0 10px 0;">
12 <div id="nx_form" style = "/*width: 260px; */height: 375px;" class="helper">
13 <script type="text/javascript" src = "https://api.networx.com/iframe.php?aff_id=3f597e2d7a67b6520a585618d23e2d1b&aff_to_form_id=5425"></script>
14 </div>
15 </div>
-
APPPATH/views/front/v_content1lvl.php [ 10 ] » Kohana_Core::error_handler(arguments)
0
integer 8
1
string(26) "Undefined variable: banner"
2
string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php"
3
integer 10
4
array(6) ( "kohana_view_filename" => string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php" "kohana_view_data" => array(4) ( "banners" => object View(2)
{ protected _file => string(83) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_banners.php" protected _data => array(0) }
"locationlist" => object Response(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => object Response(5){ }
protected _body => string(1070) "<div class="findarea"> <div class="showHide">Find Service Area</div> <div class="hiddendiv" style="display:none;"> …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"linkwidget" => bool FALSE ) "banners" => object View(2){ }
protected _body => string(1879) " <div id="contactpage"> <span class="mail"></span> <form id="contacts"> <span class="formspan">Complete the form …" protected _cookies => array(0) protected _protocol => NULL }{ protected _file => string(83) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_banners.php" protected _data => array(0) }
"locationlist" => object Response(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => object Response(5){ }
protected _body => string(1070) "<div class="findarea"> <div class="showHide">Find Service Area</div> <div class="hiddendiv" style="display:none;"> …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"linkwidget" => bool FALSE ){ }
protected _body => string(1879) " <div id="contactpage"> <span class="mail"></span> <form id="contacts"> <span class="formspan">Complete the form …" protected _cookies => array(0) protected _protocol => NULL }5 <div class="leftc"> 6 <?= $contactsw ?> 7 </div> 8 9 <? endif; ?> 10 <? if ($banner == false): ?> 11 <div id="networx_form_container" style="margin:0px;padding:0 0 10px 0;"> 12 <div id="nx_form" style = "/*width: 260px; */height: 375px;" class="helper"> 13 <script type="text/javascript" src = "https://api.networx.com/iframe.php?aff_id=3f597e2d7a67b6520a585618d23e2d1b&aff_to_form_id=5425"></script> 14 </div> 15 </div>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php"
1
array(4) ( "banners" => object View(2)
{ protected _file => string(83) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_banners.php" protected _data => array(0) }
"locationlist" => object Response(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => object Response(5){ }
protected _body => string(1070) "<div class="findarea"> <div class="showHide">Find Service Area</div> <div class="hiddendiv" style="display:none;"> …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"linkwidget" => bool FALSE ){ }
protected _body => string(1879) " <div id="contactpage"> <span class="mail"></span> <form id="contacts"> <span class="formspan">Complete the form …" protected _cookies => array(0) protected _protocol => NULL }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } // End View
-
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message.
-
APPPATH/views/template.php [ 47 ] » Kohana_View->__toString()
42 <?=$top_menu?> 43 </div> 44 </header> 45 <section> 46 <?foreach ($all_levels as $level):?> 47 <?=$level?> 48 <?endforeach?> 49 </section> 50 <footer id="footer"> 51 <?=$footer_menu?> 52 </footer>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(76) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/template.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(76) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/template.php"
1
array(12) ( "styles" => array(3) ( 0 => string(14) "/css/style.css" 1 => string(13) "/css/menu.css" 2 => string(20) "/css/contactpage.css" ) "scripts" => array(7) ( 0 => string(23) "/js/jquery-1.9.1.min.js" 1 => string(27) "/js/jquery.fancybox.pack.js" 2 => string(11) "/js/main.js" 3 => string(26) "/js/jquery.validate.min.js" 4 => string(15) "/js/adaptive.js" 5 => string(20) "/js/jquery.cookie.js" 6 => string(11) "/js/menu.js" ) "area_type" => string(8) "counties" "page_id" => string(3) "123" "admin" => integer 0 "customer" => array(8) ( "companyr" => string(5) "Smile" "yin" => string(10) " 10 years " "logo" => string(8) "logo.svg" "phone" => string(14) "1-888-320-0059" "bbb" => string(1) "0" "email" => string(21) "simon.harel@gmail.com" "customer_id" => string(1) "0" "address" => string(33) "Smile Roofing | | 1-888-320-0059" ) "top_menu" => object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"footer_menu" => object Response(5){ }
protected _body => string(1501) "<div id="top"> <div id="hcolum1"> <a id="logo" href="/ak/northwest_arctic_county"> <img src="/images/logo/logo.svg" alt="Smil …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"META" => array(3) ( "description" => string(0) "" "keywords" => string(0) "" "title" => string(0) "" ) "content" => array(1) ( 0 => array(19) ( "page_id" => string(3) "123" "parent_id" => string(1) "1" "seo_url" => string(11) "/contact-us" "controller" => string(12) "contactspage" "action" => string(5) "index" "pagename" => string(10) "Contact us" "docname" => string(0) "" "menuname" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "meta_title" => string(0) "" "content" => string(0) "" "lang_id" => string(0) "" "published" => string(1) "1" "last_modified" => string(19) "2014-04-26 09:23:00" "descriptions_id" => string(0) "" "parent_table" => string(1) "0" "link_text" => string(0) "" "link_published" => string(1) "0" ) ) "all_levels" => array(2) ( 0 => object View(2){ }
protected _body => string(1379) "<div class="infooter"> <div id="footer1"> <ul class="navigation"> <li><a href="/">Home</a></li> <li><a href="/ak/ …" protected _cookies => array(0) protected _protocol => NULL }{ protected _file => string(89) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_questionnaire.php" protected _data => array(0) }
1 => object View(2){ protected _file => string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php" protected _data => array(4) ( "banners" => object View(2)
) "lang_id" => string(0) "" ){ protected _file => string(83) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_banners.php" protected _data => array(0) }
"locationlist" => object Response(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => object Response(5){ }
protected _body => string(1070) "<div class="findarea"> <div class="showHide">Find Service Area</div> <div class="hiddendiv" style="display:none;"> …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"linkwidget" => bool FALSE ) }{ }
protected _body => string(1879) " <div id="contactpage"> <span class="mail"></span> <form id="contacts"> <span class="formspan">Complete the form …" protected _cookies => array(0) protected _protocol => NULL }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } // End View
-
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Contactspage(9)
{ public search => NULL public replace => NULL public parameters => array(4) ( "area" => array(12) ( "area_type" => string(8) "counties" "area_name" => string(16) "Northwest Arctic" "area_id" => string(3) "365" "page_id" => string(3) "123" "fcn" => string(18) "Smile Land Scaping" "state_id" => string(1) "3" "ssst" => string(2) "ak" "u_states" => string(6) "alaska" "county_name" => string(16) "Northwest Arctic" "state_name" => string(6) "Alaska" "county_id" => string(3) "365" "u_counties" => string(23) "northwest_arctic_county" ) "search" => array(11) ( 0 => string(6) "[ssst]" 1 => string(5) "[sst]" 2 => string(5) "[lst]" 3 => string(5) "[lco]" 4 => string(7) "[smile]" 5 => string(10) " 10 years " 6 => string(5) "[lci]" 7 => string(9) "[lst_url]" 8 => string(6) "[slst]" 9 => string(6) "[slco]" 10 => string(6) "[slci]" ) "replace" => array(11) ( 0 => string(2) "ak" 1 => string(2) "AK" 2 => string(6) "Alaska" 3 => string(16) "Northwest Arctic" 4 => string(5) "Smile" 5 => string(10) " 10 years " 6 => string(0) "" 7 => string(6) "Alaska" 8 => string(6) "alaska" 9 => string(16) "northwest arctic" 10 => string(0) "" ) "customer" => array(8) ( "companyr" => string(5) "Smile" "yin" => string(10) " 10 years " "logo" => string(8) "logo.svg" "phone" => string(14) "1-888-320-0059" "bbb" => string(1) "0" "email" => string(21) "simon.harel@gmail.com" "customer_id" => string(1) "0" "address" => string(33) "Smile Roofing | | 1-888-320-0059" ) ) public template => object View(2)
{ protected _file => string(76) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/template.php" protected _data => array(12) ( "styles" => array(3) ( 0 => string(14) "/css/style.css" 1 => string(13) "/css/menu.css" 2 => string(20) "/css/contactpage.css" ) "scripts" => array(7) ( 0 => string(23) "/js/jquery-1.9.1.min.js" 1 => string(27) "/js/jquery.fancybox.pack.js" 2 => string(11) "/js/main.js" 3 => string(26) "/js/jquery.validate.min.js" 4 => string(15) "/js/adaptive.js" 5 => string(20) "/js/jquery.cookie.js" 6 => string(11) "/js/menu.js" ) "area_type" => string(8) "counties" "page_id" => string(3) "123" "admin" => integer 0 "customer" => array(8) ( "companyr" => string(5) "Smile" "yin" => string(10) " 10 years " "logo" => string(8) "logo.svg" "phone" => string(14) "1-888-320-0059" "bbb" => string(1) "0" "email" => string(21) "simon.harel@gmail.com" "customer_id" => string(1) "0" "address" => string(33) "Smile Roofing | | 1-888-320-0059" ) "top_menu" => object Response(5)
public auto_render => bool TRUE public request => object Request(19){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"footer_menu" => object Response(5){ }
protected _body => string(1501) "<div id="top"> <div id="hcolum1"> <a id="logo" href="/ak/northwest_arctic_county"> <img src="/images/logo/logo.svg" alt="Smil …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"META" => array(3) ( "description" => string(0) "" "keywords" => string(0) "" "title" => string(0) "" ) "content" => array(1) ( 0 => array(19) ( "page_id" => string(3) "123" "parent_id" => string(1) "1" "seo_url" => string(11) "/contact-us" "controller" => string(12) "contactspage" "action" => string(5) "index" "pagename" => string(10) "Contact us" "docname" => string(0) "" "menuname" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "meta_title" => string(0) "" "content" => string(0) "" "lang_id" => string(0) "" "published" => string(1) "1" "last_modified" => string(19) "2014-04-26 09:23:00" "descriptions_id" => string(0) "" "parent_table" => string(1) "0" "link_text" => string(0) "" "link_published" => string(1) "0" ) ) "all_levels" => array(2) ( 0 => object View(2){ }
protected _body => string(1379) "<div class="infooter"> <div id="footer1"> <ul class="navigation"> <li><a href="/">Home</a></li> <li><a href="/ak/ …" protected _cookies => array(0) protected _protocol => NULL }{ protected _file => string(89) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_questionnaire.php" protected _data => array(0) }
1 => object View(2){ protected _file => string(87) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_content1lvl.php" protected _data => array(4) ( "banners" => object View(2)
) "lang_id" => string(0) "" ) }{ protected _file => string(83) "/var/www/vhosts/smilelandscaping.com/httpdocs/application/views/front/v_banners.php" protected _data => array(0) }
"locationlist" => object Response(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => object Response(5){ }
protected _body => string(1070) "<div class="findarea"> <div class="showHide">Find Service Area</div> <div class="hiddendiv" style="display:none;"> …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"linkwidget" => bool FALSE ) }{ }
protected _body => string(1879) " <div id="contactpage"> <span class="mail"></span> <form id="contacts"> <span class="formspan">Complete the form …" protected _cookies => array(0) protected _protocol => NULL }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "<path>" protected _regex => array(1) ( "path" => string(7) "^(.*)+$" ) protected _defaults => array(7) ( "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" "controller" => string(12) "contactspage" "action" => string(5) "index" ) protected _route_regex => string(23) "#^(?P<path>^(.*)+$)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Contactspage" protected _action => string(5) "index" protected _uri => string(37) "ak/contact-us-northwest_arctic_county" protected _external => bool FALSE protected _params => array(6) ( "path" => string(37) "ak/contact-us-northwest_arctic_county" "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
public auth => object Auth_ORM(2){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }{ protected _session => object Session_Native(5)
public leftmenu => object Response(5){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
protected _config => object Config_Group(7){ public driver => string(3) "ORM" public hash_method => string(6) "sha256" public hash_key => string(12) "zxcvb7uhjnlk" public lifetime => integer 1209600 public session_type => string(6) "native" public session_key => string(9) "auth_user" public users => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(1332) " <div class="wdg-services"> <ul> <li> <a href="/ak/lawn-care-northwest_arctic_count …" protected _cookies => array(0) protected _protocol => NULL }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(6) "<path>" protected _regex => array(1) ( "path" => string(7) "^(.*)+$" ) protected _defaults => array(7) ( "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" "controller" => string(12) "contactspage" "action" => string(5) "index" ) protected _route_regex => string(23) "#^(?P<path>^(.*)+$)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Contactspage" protected _action => string(5) "index" protected _uri => string(37) "ak/contact-us-northwest_arctic_county" protected _external => bool FALSE protected _params => array(6) ( "path" => string(37) "ak/contact-us-northwest_arctic_county" "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }109 $orig_response = $response = Response::factory(); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 990 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(6) "<path>" protected _regex => array(1) ( "path" => string(7) "^(.*)+$" ) protected _defaults => array(7) ( "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" "controller" => string(12) "contactspage" "action" => string(5) "index" ) protected _route_regex => string(23) "#^(?P<path>^(.*)+$)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Contactspage" protected _action => string(5) "index" protected _uri => string(37) "ak/contact-us-northwest_arctic_county" protected _external => bool FALSE protected _params => array(6) ( "path" => string(37) "ak/contact-us-northwest_arctic_county" "area_name" => string(16) "Northwest Arctic" "area_type" => string(8) "counties" "area_id" => string(3) "365" "unique_page_id" => string(1) "0" "parent_page_id" => string(3) "123" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 117 ] » Kohana_Request->execute()
112 /** 113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 114 * If no source is specified, the URI will be automatically detected. 115 */ 116 echo Request::factory(TRUE, array(), FALSE) 117 ->execute() 118 ->send_headers(TRUE) 119 ->body(); 120 }