Skip to content

Commit

Permalink
Add plugin information methods
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Sep 26, 2015
1 parent 71132bc commit d993715
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,24 @@ public function initialize()
);
};
}

public function getPluginName()
{
return 'AWS S3';
}

public function getPluginDescription()
{
return t('This plugin stores uploaded files to Amazon S3');
}

public function getPluginAuthor()
{
return 'Frédéric Guillot';
}

public function getPluginVersion()
{
return '1.0.0';
}
}

0 comments on commit d993715

Please sign in to comment.