File size: 1.96Kb
<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Fields
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: index.tpl 9747 2012-07-26 02:08:08Z john $
* @author John
*/
?>
<?php
// Render the admin js
echo $this->render('_jsAdmin.tpl')
?>
<h2><?php echo $this->translate("Profile Questions") ?></h2>
<p>
<?php echo $this->translate("FIELDS_VIEWS_SCRIPTS_ADMINFIELDS_DESCRIPTION") ?>
</p>
<br />
<div class="admin_fields_type">
<h3><?php echo $this->translate("Editing Profile Type:") ?></h3>
<?php echo $this->formSelect('profileType', $this->topLevelOption->option_id, array(), $this->topLevelOptions) ?>
</div>
<br />
<div class="admin_fields_options">
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_addquestion"><?php echo $this->translate("Add Question") ?></a>
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_addheading"><?php echo $this->translate("Add Heading") ?></a>
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_renametype"><?php echo $this->translate("Rename Profile Type") ?></a>
<?php if( engine_count($this->topLevelOptions) > 1 ): ?>
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_deletetype"><?php echo $this->translate("Delete Profile Type") ?></a>
<?php endif; ?>
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_addtype"><?php echo $this->translate("Create New Profile Type") ?></a>
<a href="javascript:void(0);" onclick="void(0);" class="buttonlink admin_fields_options_saveorder" style="display:none;"><?php echo $this->translate("Save Order") ?></a>
</div>
<br />
<ul class="admin_fields">
<?php foreach( $this->secondLevelMaps as $map ): ?>
<?php echo $this->adminFieldMeta($map) ?>
<?php endforeach; ?>
</ul>
<br />
<br />