Last active
August 29, 2015 14:03
-
-
Save mmccall10/782f6172a115f2feae04 to your computer and use it in GitHub Desktop.
File Selector Concrete5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('C5_EXECUTE') or die("Access Denied."); | |
$al = Loader::helper('concrete/asset_library'); | |
//$al->file for all files | |
$al->file(‘thumbnail’, ‘thumbnailFileID’, ‘Select Thumbnail’); | |
//$al->image for images only | |
echo $al->image($formElementID, $formName, $chooseText, $fileObject = null); | |
?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment