for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Craft;
/**
* Zip Assets Plugin.
*
* Zips up given assets for download.
* @author Bob Olde Hampsink <[email protected]>
* @copyright Copyright (c) 2015, author
* @license http://buildwithcraft.com/license Craft License Agreement
* @link http://github.com/boboldehampsink
*/
class ZipAssetsPlugin extends BasePlugin
{
* Get plugin name.
* @return string
public function getName()
return Craft::t('Zip Assets');
}
* Get plugin version.
public function getVersion()
return '1.5.0';
* Get plugin developer.
public function getDeveloper()
return 'Bob Olde Hampsink';
* Get plugin developer url.
public function getDeveloperUrl()
return 'http://www.itmundi.nl';