diff --git a/plugins/pinterest b/plugins/pinterest
deleted file mode 100644
index 276936dd..00000000
--- a/plugins/pinterest
+++ /dev/null
@@ -1,37 +0,0 @@
-dbFields = array(
- 'verification-code'=>''
- );
- }
- public function form()
- {
- global $Language;
- $html = '
';
- $html .= '
';
- $html .= '
';
- $html .= '
'.$Language->get('complete-this-field-with-the-google-site-verification').'
';
- $html .= '
';
- return $html;
- }
- public function siteHead()
- {
- $html = PHP_EOL.''.PHP_EOL;
- $html .= ''.PHP_EOL;
- if(Text::isEmpty($this->getDbField('google-site-verification'))) {
- return false;
- }
- return $html;
- }
- public function siteBodyEnd()
- {
- $html = PHP_EOL.''.PHP_EOL;
- $html .= '';
- if(Text::isEmpty($this->getDbField('verification-code'))) {
- return false;
- }
- return $html;
- }
-}