Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
Removed pico_plugin.php
Browse files Browse the repository at this point in the history
Added OtherExamplePlugin.php
  • Loading branch information
hassankhan committed Nov 18, 2013
1 parent d7e3d69 commit 6e40692
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 94 deletions.
41 changes: 41 additions & 0 deletions plugins/OtherExamplePlugin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

/**
* Zepto
*
* @author Hassan Khan
* @link http://https://github.com/hassankhan/Zepto
* @license http://opensource.org/licenses/MIT
* @version 0.4
*/

class OtherExamplePlugin implements \Zepto\PluginInterface {

public function after_plugins_load()
{
echo '2';
}

public function after_config_load(&$settings)
{
echo '2';
}

public function request_url(&$url)
{
echo '2';
}

public function before_file_load(&$file)
{
echo '2';
}

public function after_file_load(&$file, &$content)
{
echo '2';
}

}

?>
94 changes: 0 additions & 94 deletions plugins/pico_plugin.php

This file was deleted.

0 comments on commit 6e40692

Please sign in to comment.