pecl channel-update pecl.php.net
pecl clear-cache
pecl install xdebug
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 | |
// 1/3) Usage: | |
$entry_id = 100; // usually provided in a filter, if so you can remove this line. | |
$entry = GFAPI::get_entry( $entry_id ); // get the entry, if this was provided in a filter you can remove this line. | |
$field_id = 35; // field ID can be found when field is selected while editing the form | |
$value = rs_gf_get_checked_boxes( $entry, $field_id ); | |
// 2/3) Example output: |
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 | |
/** | |
* On-the-fly CSS Compression | |
* Copyright (c) 2009 and onwards, Manas Tungare. | |
* Creative Commons Attribution, Share-Alike. | |
* | |
* In order to minimize the number and size of HTTP requests for CSS content, | |
* this script combines multiple CSS files into a single file and compresses | |
* it on-the-fly. | |
* |