The Render Function

Description

The render function (from Gadget and View) takes data that has been formatted and placed into protected and private members of the gadget and presents a representation of the data in a format that matches the format requested (usually HTML).

Output

The representation is usually output to the output buffer via calls to print, echo, and PHP escaping (<?…?>). However, there are more than a couple cases where render is expected to return a value that matches a value that can be read by the layout of the format that it is requested in. For example, RSS implementations require that a specific RSS-like hash be passed back to the layout. In order to know how to return data it is helpful to look at gadgets that are implemented in a way that specific to the format that you're intending to render for.

Output Example 1

From RiverGadget.inc implemented in RiverGuideBookGadget. Notice how the book list is gathered in act and iterated through in render(). The separation allows detection and handling of errors and alternate representations.


	function render()
	{
		$c = $this->getPage()->getObjectRef("ConfigInfo");
		if(!count($this->books)) return;
?>
	<h2>Guidebooks</h2>
	<div style='clear:both'>
	<?
		foreach ($this->books as $row )
		{

			if ($row['imgurl'])
			{
				$image = $row['imgurl'];
			}
			else
			{
				$image = $c->imgRoot . "/bookthumb.gif";
			}
?>
	<div style='float:left;width:200px'>
	<a href="<?=$row['url']?>">
		<img src="<?=$image?>">
		<br>
		<br>
		<?=$row['title']?>
	</a>
	<br>
	<?=$row['price']?>
	</div>
<?

			}
?></div><?
	}

Output Example 2

Taken from RiverListView.inc in /formats/mapxml/views/. The view layout expects an array of JSON encoded objects with a member named 'geoMarker' with the prpopriatary (to the layout) object of CMapMarker. CMapMarker is defined in the root page for the format. RiverListView from other formats produce RSS or JSON-encoded data similiarly with the same river list.

<code>

function renderView()
{
	$rivarr = array ();
	foreach ($this->model->rivers as $river)
	{
		$rivername = $river['river'];
		$lat = isset ($river['plat']) ? $river['plat'] : '0';
		$lon = isset ($river['plon']) ? $river['plon'] : '0';
		$marker = new CMapMarker();
		$marker->lat = $lat;
		$marker->lon = $lon;
		$rurl = $this->getPage()->gadStatURL("RiverGadget", "detail", 'html',array (
			"id"=>$river['id']
		));
		$gurl = $this->getPage()->gadStatURL("GaugeGadget", "view", 'html',array (
			"id"=>$river['gaugeid']
		));
		$marker->comment = "<a href='$rurl'>$rivername</a><br/><a href='$gurl'>$river[level] $river[levadd] $river[units]</a><br/>Updated $river[updated]<br>";
		$marker->description = "$rivername";
		$marker->icon = $river['cond'];
		$marker->type = 'riverlevel';
		$river['geoMarker'] = $marker;
		$rivarr[] = $river;
	}
	//$json =
	// convert a complexe value to JSON notation, and send it to the browser
	//$output = json_encode($rivarr);
	return($rivarr);
}

<code>

Order of Execution

The render() function is called after the act() function on a gadget. All gadgets have run through the act function by the time the first render function is called. Act() has to return the value of array(GDA_DISPLAY) in order for the render function to be called. However, for legacy reasons effect does not return a value or returns an invalid value render() is generally called.

Join AW and support river stewardship nationwide!
7.4.3PHP Version488msRequest Duration6MBMemory UsageGET content/{url}Route
    • Booting (84.12ms)
    • Application (404ms)
    • 1 x Application (82.75%)
      404ms
      1 x Booting (17.24%)
      84.12ms
      14 templates were rendered
      • legacy.views.container-view (resources/views/legacy/views/container-view.blade.php)6blade
        Params
        0
        components
        1
        controls
        2
        id
        3
        class
        4
        title
        5
        formRenderService
      • legacy.views.container-view (resources/views/legacy/views/container-view.blade.php)6blade
        Params
        0
        components
        1
        controls
        2
        id
        3
        class
        4
        title
        5
        formRenderService
      • app::layout.gadget (resources/views/layout/gadget.blade.php)2blade
        Params
        0
        contents
        1
        formRenderService
      • layout.columnstyle.one (resources/views/layout/columnstyle/one.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      • layout.columnstyle.componentstack (resources/views/layout/columnstyle/componentstack.blade.php)9blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
        7
        stack
        8
        component
      • layout.main (resources/views/layout/main.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      • layout._headers (resources/views/layout/_headers.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      • layout.header (resources/views/layout/header.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      • layout._scripts (resources/views/layout/_scripts.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      • layout.navigation (resources/views/layout/navigation.blade.php)8blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
        7
        menu
      • includes.alert.membership (resources/views/includes/alert/membership.blade.php)17blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
        7
        menu
        8
        searchurl
        9
        loginurl
        10
        logouturl
        11
        __currentLoopData
        12
        child
        13
        loop
        14
        otherchild
        15
        shouldNotifyUser
        16
        user
      • navigation.menu.static (resources/views/navigation/menu/static.blade.php)15blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
        7
        menu
        8
        searchurl
        9
        loginurl
        10
        logouturl
        11
        __currentLoopData
        12
        child
        13
        loop
        14
        otherchild
      • includes.footer (resources/views/includes/footer.blade.php)8blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
        7
        menu
      • layout.pagemap (resources/views/layout/pagemap.blade.php)7blade
        Params
        0
        obLevel
        1
        __env
        2
        app
        3
        errors
        4
        contents
        5
        formRenderService
        6
        layout
      uri
      GET content/{url}
      middleware
      web
      controller
      App\Http\Controllers\Wh2oController@content
      namespace
      App\Http\Controllers
      where
      as
      generated::Os9R4mqMKRF5ktoI
      file
      app/Http/Controllers/Wh2oController.php:34-68
      4 statements were executed, 4 of which were duplicated, 0 unique3.53ms
      • select * from "articles" where ("id" = '-SecurityGadget-explain' or "short_name" = '-SecurityGadget-explain') and "articles"."deleted_at" is null and "articles"."is_final" = 'true' limit 1
        1.51ms/app/Legacy/Repositories/NewsInfo.php:61wh2o
        Metadata
        Bindings
        • 0. -SecurityGadget-explain
        • 1. -SecurityGadget-explain
        • 2. true
        Backtrace
        • 15. /app/Legacy/Repositories/NewsInfo.php:61
        • 16. /code/wh2o/ArticleGadget.inc:128
        • 17. /code/wh2o/Page1.inc:930
        • 18. /code/wh2o/Page1.inc:1019
        • 19. /code/wh2o/SecurityGadget.inc:150
      • select * from "articles" where "short_name" = '-SecurityGadget-explain' limit 1
        440μs/app/Legacy/Repositories/NewsInfo.php:64wh2o
        Metadata
        Bindings
        • 0. -SecurityGadget-explain
        Backtrace
        • 15. /app/Legacy/Repositories/NewsInfo.php:64
        • 16. /code/wh2o/ArticleGadget.inc:128
        • 17. /code/wh2o/Page1.inc:930
        • 18. /code/wh2o/Page1.inc:1019
        • 19. /code/wh2o/SecurityGadget.inc:150
      • select * from "articles" where ("id" = '-SecurityGadget-explain' or "short_name" = '-SecurityGadget-explain') and "articles"."deleted_at" is null and "articles"."is_final" = 'true' limit 1
        380μs/app/Legacy/Repositories/NewsInfo.php:61wh2o
        Metadata
        Bindings
        • 0. -SecurityGadget-explain
        • 1. -SecurityGadget-explain
        • 2. true
        Backtrace
        • 15. /app/Legacy/Repositories/NewsInfo.php:61
        • 16. /code/wh2o/ArticleGadget.inc:128
        • 17. /code/wh2o/Page1.inc:930
        • 18. /code/wh2o/Page1.inc:1019
        • 19. /code/wh2o/SecurityGadget.inc:150
      • select * from "articles" where "short_name" = '-SecurityGadget-explain' limit 1
        1.2ms/app/Legacy/Repositories/NewsInfo.php:64wh2o
        Metadata
        Bindings
        • 0. -SecurityGadget-explain
        Backtrace
        • 15. /app/Legacy/Repositories/NewsInfo.php:64
        • 16. /code/wh2o/ArticleGadget.inc:128
        • 17. /code/wh2o/Page1.inc:930
        • 18. /code/wh2o/Page1.inc:1019
        • 19. /code/wh2o/SecurityGadget.inc:150
          _token
          ioRdmKUl3brbtL49uyzWYnOUFL4FU0sBofmXit0y
          page
          array:1 [ "count" => -1 ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /content/Wiki/developer:render
          status_code
          200
          
          status_text
          OK
          format
          html
          content_type
          text/html; charset=UTF-8
          request_query
          []
          
          request_request
          []
          
          request_headers
          0 of 0
          array:15 [ "priority" => array:1 [ 0 => "u=0, i" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "host" => array:1 [ 0 => "beta.americanwhitewater.org" ] ]
          request_server
          0 of 0
          array:42 [ "USER" => "www-data" "HOME" => "/var/www" "HTTP_PRIORITY" => "u=0, i" "HTTP_ACCEPT_ENCODING" => "gzip, deflate, br, zstd" "HTTP_SEC_FETCH_DEST" => "document" "HTTP_SEC_FETCH_USER" => "?1" "HTTP_SEC_FETCH_MODE" => "navigate" "HTTP_SEC_FETCH_SITE" => "none" "HTTP_ACCEPT" => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" "HTTP_USER_AGENT" => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_UPGRADE_INSECURE_REQUESTS" => "1" "HTTP_SEC_CH_UA_PLATFORM" => ""Windows"" "HTTP_SEC_CH_UA_MOBILE" => "?0" "HTTP_SEC_CH_UA" => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" "HTTP_CACHE_CONTROL" => "no-cache" "HTTP_PRAGMA" => "no-cache" "HTTP_HOST" => "beta.americanwhitewater.org" "REDIRECT_STATUS" => "200" "SERVER_NAME" => "beta.americanwhitewater.org" "SERVER_PORT" => "443" "SERVER_ADDR" => "172.31.18.125" "REMOTE_PORT" => "40923" "REMOTE_ADDR" => "18.191.100.220" "SERVER_SOFTWARE" => "nginx/1.18.0" "GATEWAY_INTERFACE" => "CGI/1.1" "HTTPS" => true "REQUEST_SCHEME" => "https" "SERVER_PROTOCOL" => "HTTP/2.0" "DOCUMENT_ROOT" => "/opt/americanwhitewater.org/public" "DOCUMENT_URI" => "/index.php" "REQUEST_URI" => "/content/Wiki/developer:render" "SCRIPT_NAME" => "/index.php" "CONTENT_LENGTH" => "" "CONTENT_TYPE" => "" "REQUEST_METHOD" => "GET" "QUERY_STRING" => "" "PHP_VALUE" => "post_max_size=20M" "SCRIPT_FILENAME" => "/opt/americanwhitewater.org/public/index.php" "FCGI_ROLE" => "RESPONDER" "PHP_SELF" => "/index.php" "REQUEST_TIME_FLOAT" => 1743726386.073 "REQUEST_TIME" => 1743726386 ]
          request_cookies
          []
          
          response_headers
          0 of 0
          array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Fri, 04 Apr 2025 00:26:26 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6Im1TVGNrNUQ1TVE2eTA4MG9xaFFqbUE9PSIsInZhbHVlIjoiUzZEZlhoMEdKMzh6NDVpQ29QUW1Cdm0xazdrdnR5NGgwNTNvUEVUcy95bWtVOHdXVEFHNFpaMFBTU2dEaGZrdTJyZVFMSWdlRDUzR1lGTmxtblh5OVVldmVDK2tvWUg4TXlIQU9UdWpnNlF6WCs2MEpqRVZDYityWklicjVvWVYiLCJtYWMiOiIwMGY2ZGI0ZDFhOTEwNGQwNDQ2OTZhNTU3ZTRiNzk0ODJiNzYwYjc4MjQ5NzlkMTliNjU3Y2EzYzM0OGVmYjg3In0%3D; expires=Fri, 04-Apr-2025 02:26:26 GMT; Max-Age=7200; path=/XSRF-TOKEN=eyJpdiI6Im1TVGNrNUQ1TVE2eTA4MG9xaFFqbUE9PSIsInZhbHVlIjoiUzZEZlhoMEdKMzh6NDVpQ29QUW1Cdm0xazdrdnR5NGgwNTNvUEVUcy95bWtVOHdXVEFHNFpaMFBTU2dEaGZrdTJyZVFMS" 1 => "DWa976077ab53ea1a0f12b663e732b73c0=eyJpdiI6ImZienFDcE5YV2dsUUNKdGIxaldPT1E9PSIsInZhbHVlIjoiTnNzZnhla1JKaGpVcEljZXUyamg5R0VnbFdMWm1YUDlrd3BSaUZwWVdKamtZWUJxUFoyejlWUlBiUUFnWDVpVSIsIm1hYyI6ImE1ODRmMmYzZTMwMTRlNzAxODJiNWQzZTAyYzJkYmU0MjZlY2ZiZmY1YTYzNWRmMDhiYmNmMjMzMDE3ODMwZTkifQ%3D%3D; expires=Fri, 04-Apr-2025 00:25:26 GMT; Max-Age=0; path=/; httponlyDWa976077ab53ea1a0f12b663e732b73c0=eyJpdiI6ImZienFDcE5YV2dsUUNKdGIxaldPT1E9PSIsInZhbHVlIjoiTnNzZnhla1JKaGpVcEljZXUyamg5R0VnbFdMWm1YUDlrd3BSaUZwWVdKamtZWUJxUFoye" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6Im1TVGNrNUQ1TVE2eTA4MG9xaFFqbUE9PSIsInZhbHVlIjoiUzZEZlhoMEdKMzh6NDVpQ29QUW1Cdm0xazdrdnR5NGgwNTNvUEVUcy95bWtVOHdXVEFHNFpaMFBTU2dEaGZrdTJyZVFMSWdlRDUzR1lGTmxtblh5OVVldmVDK2tvWUg4TXlIQU9UdWpnNlF6WCs2MEpqRVZDYityWklicjVvWVYiLCJtYWMiOiIwMGY2ZGI0ZDFhOTEwNGQwNDQ2OTZhNTU3ZTRiNzk0ODJiNzYwYjc4MjQ5NzlkMTliNjU3Y2EzYzM0OGVmYjg3In0%3D; expires=Fri, 04-Apr-2025 02:26:26 GMT; path=/XSRF-TOKEN=eyJpdiI6Im1TVGNrNUQ1TVE2eTA4MG9xaFFqbUE9PSIsInZhbHVlIjoiUzZEZlhoMEdKMzh6NDVpQ29QUW1Cdm0xazdrdnR5NGgwNTNvUEVUcy95bWtVOHdXVEFHNFpaMFBTU2dEaGZrdTJyZVFMS" 1 => "DWa976077ab53ea1a0f12b663e732b73c0=eyJpdiI6ImZienFDcE5YV2dsUUNKdGIxaldPT1E9PSIsInZhbHVlIjoiTnNzZnhla1JKaGpVcEljZXUyamg5R0VnbFdMWm1YUDlrd3BSaUZwWVdKamtZWUJxUFoyejlWUlBiUUFnWDVpVSIsIm1hYyI6ImE1ODRmMmYzZTMwMTRlNzAxODJiNWQzZTAyYzJkYmU0MjZlY2ZiZmY1YTYzNWRmMDhiYmNmMjMzMDE3ODMwZTkifQ%3D%3D; expires=Fri, 04-Apr-2025 00:25:26 GMT; path=/; httponlyDWa976077ab53ea1a0f12b663e732b73c0=eyJpdiI6ImZienFDcE5YV2dsUUNKdGIxaldPT1E9PSIsInZhbHVlIjoiTnNzZnhla1JKaGpVcEljZXUyamg5R0VnbFdMWm1YUDlrd3BSaUZwWVdKamtZWUJxUFoye" ] ]
          session_attributes
          0 of 0
          array:3 [ "_token" => "ioRdmKUl3brbtL49uyzWYnOUFL4FU0sBofmXit0y" "page" => array:1 [ "count" => -1 ] "PHPDEBUGBAR_STACK_DATA" => [] ]