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
| @mixin element_reset($properties){ | |
| @each $property in $properties { | |
| #{$property} { | |
| margin:0px; padding:0px; | |
| @if($property == 'li' or $property == 'ul'){ |
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 | |
| /** | |
| * Get Plugin Headers | |
| * | |
| * Get the header information from all plugins in | |
| * the plugins pool for use later on. | |
| * | |
| * @param mixed $plugin | |
| */ | |
| public function get_plugin_headers($plugin) |
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 | |
| // Config Vars | |
| $sourcefolder = "./" ; // Default: "./" | |
| $zipfilename = "myarchive.zip"; // Default: "myarchive.zip" | |
| $timeout = 5000 ; // Default: 5000 | |
| // instantate an iterator (before creating the zip archive, just | |
| // in case the zip file is created inside the source folder) | |
| // and traverse the directory to get the file list. |