<?php

/*
 * Puzzle
 * Config
 */
$puzzle_pieces = new PuzzlePieces();
/* Add shortcode buttons to WYSIWYG editor */
$puzzle_pieces->set_shortcodes(false);
/* Add Icon Library to page builder */
$puzzle_pieces->set_icon_library(false);
/*
 * Set default icon in page builder
 * This will only take effect if the icon library is available.
 */
$puzzle_pieces->set_default_icon('fa fa-star');
/*
 * Add FontAwesome library to Icon Library
 * This will only take effect if ICON_LIBRARY is set to true.
 */
$puzzle_pieces->set_font_awesome_library(false);
/*
 * Add custom icon libraries before and after Font Awesome library
 * Icon library must be available.
 * The Font Awesome library does not have to be available for these to load.
 */
$puzzle_pieces->set_custom_icon_libraries_before(false);
$puzzle_pieces->set_custom_icon_libraries_after(false);
/*
 * Add a "no icon" choice to Icon Library
 * This will only take effect if the icon library is available.