This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.

LemonStand API

close_form function

Defined in /modules/cms/init/custom_helpers.php, lines 61-64
Author LemonStand eCommerce Inc.
string function close_form()
{return} string returns HTML markup for the closing form tag.
Returns HTML string containing the closing form tag. Using this function is not required. You can use it together with open_form() function to avoid open/close tag mismatch error messages in IDEs. The following code opens and closes a form.
<?= open_form() ?>
...
<?= close_form() ?>

See Also