get_view — Get the view object.

View-related functions

Summary

get_view()

Get the view object.

Should be used only to avoid function scope issues within other theme helper functions.

Returns:

Omeka_View

Usage

Examples

Use in the config_form.php file of a plugin to load the view object. For more information on the available view helpers, see the Zend documentation

<?php $view = get_view(); ?>

<div class="inputs five columns omega">
  <p class="explanation"><?php echo __("Latitude of the map's initial center point, in degrees. Must be between -90 and 90."); ?></p>
  <?php echo $view->formText('default_latitude', get_option('geolocation_default_latitude')); ?>
</div>

See Also