* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*
*/
//get the page type
$type = $vars['type'];
//action
$action = "expages/add";
//grab the required entity
$page_contents = elgg_get_entities(array('type' => 'object', 'subtype' => $type, 'limit' => 1));
if($page_contents){
foreach($page_contents as $pc){
$description = $pc->description;
$tags = $pc->tags;
$guid = $pc->guid;
}
}else {
$tags = "";
$description = "";
}
// set the required form variables
$input_area = elgg_view('input/longtext', array('internalname' => 'expagescontent', 'value' => $description));
$tag_input = elgg_view('input/tags', array('internalname' => 'expagestags', 'value' => $tags));
$submit_input = elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('save')));
$hidden_value = elgg_view('input/hidden', array('internalname' => 'content_type', 'value' => $type));
$hidden_guid = elgg_view('input/hidden', array('internalname' => 'expage_guid', 'value' => $guid));
$tag_label = elgg_echo('tags') . "
";
//type
$type = $vars['type'];
//set the url
$url = $vars['url'] . "pg/expages/index.php?type=";
if($type == 'about') {
$external_page_title = elgg_echo('expages:about');
}
else if($type == 'terms') {
$external_page_title = elgg_echo('expages:terms');
}
else if($type == 'privacy') {
$external_page_title = elgg_echo('expages:privacy');
}
//preview link
// echo "
$input_area
$tag_label $tag_input
$hidden_value $hidden_guid