profile_fields_pane.tpl.php

Display profile fields.

@todo Need definition of what variables are available here.

1 theme call to profile_fields_pane.tpl.php
ctools_profile_fields_content_type_render in plugins/content_types/user_context/profile_fields.inc
'Render' callback for the 'profile fields' content type.

File

plugins/content_types/user_context/profile_fields_pane.tpl.php

View source
<?php


/**
 * @file
 * Display profile fields.
 *
 * @todo Need definition of what variables are available here.
 */
if (is_array($vars)) {
    ?>
  <?php

    foreach ($vars as $class => $field) {
        ?>
    <dl class="profile-category">
      <dt class="profile-<?php

        print $class;
        ?>"><?php

        print $field['title'];
        ?></dt>
      <dd class="profile-<?php

        print $class;
        ?>"><?php

        print $field['value'];
        ?></dd>
    </dl>
  <?php

    }
}