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

content_block function

Defined in /modules/cms/init/custom_helpers.php, lines 135-138
Author LemonStand eCommerce Inc.
void function content_block(string $code, string $name)
$code string specifies a content block code. This parameter used by LemonStand for identifying code blocks. Content block codes can contain only digits, Latin letters and underscore characters.
$name string specifies a content block name. Name is used as a title for WYSIWYG editor on the Edit Page Content page.
Inserts WYSIWYG content block into a page. Use it for creating editable areas on pages. Please read Creating editable blocks article for details about the function usage. The following code creates two content blocks on a page.
<? content_block('our_goals', 'Our goals') ?>
<? content_block('our_contacts', 'Our contacts') ?>