'object', 'subtype' => $type, 'limit' => 1, )); if ($page_contents) { $description = $page_contents[0]->description; $guid = $page_contents[0]->guid; } else { $description = ""; $guid = 0; } // set the required form variables $input_area = elgg_view('input/longtext', array( 'name' => 'expagescontent', 'value' => $description, )); $submit_input = elgg_view('input/submit', array( 'name' => 'submit', 'value' => elgg_echo('save'), )); $hidden_type = elgg_view('input/hidden', array( 'name' => 'content_type', 'value' => $type, )); $hidden_guid = elgg_view('input/hidden', array( 'name' => 'guid', 'value' => $guid, )); $external_page_title = elgg_echo("expages:$type"); //construct the form echo << $input_area
$hidden_guid $hidden_type $submit_input
EOT;