diff --git a/application/modules/admin/controllers/ExternalAgendasController.php b/application/modules/admin/controllers/ExternalAgendasController.php
index 49a573dc5e3b9ff82292d8647ec4ab90cae28848..0c78b90ddca93cff18bed8e96406b38e20e30bb8 100644
--- a/application/modules/admin/controllers/ExternalAgendasController.php
+++ b/application/modules/admin/controllers/ExternalAgendasController.php
@@ -23,7 +23,7 @@
 class Admin_ExternalAgendasController extends ZendAfi_Controller_Action {
   public function getPlugins() {
     return ['ZendAfi_Controller_Plugin_ResourceDefinition_ExternalAgenda',
-            'ZendAfi_Controller_Plugin_Manager_Manager'];
+            'ZendAfi_Controller_Plugin_Manager_ExternalAgenda'];
   }
 
 
diff --git a/application/modules/admin/views/scripts/external-agendas/index.phtml b/application/modules/admin/views/scripts/external-agendas/index.phtml
index 550c7609d4674da835d2fc2879c6ddd0040fabc4..be3fca0d36c35381ce3ac65ffd9a4351a5fecd9c 100644
--- a/application/modules/admin/views/scripts/external-agendas/index.phtml
+++ b/application/modules/admin/views/scripts/external-agendas/index.phtml
@@ -34,25 +34,6 @@ $category = function($model, $attribs) {
                           Class_ArticleCategorie::find($cat_id)->getLibelle());
 };
 
-$actions = function($model) {
-  $map = [['url' => '/admin/external-agendas/import/id/%s',
-           'icon' => 'test',
-           'label' => $this->_('Moissonner')
-    ],
-          ['url' => '/admin/external-agendas/edit/id/%s',
-           'icon' => 'edit',
-           'label' => $this->_('Modifier'),
-           'anchorOptions' => ['data-popup' => 'true']],
-          ['url' => '/admin/external-agendas/delete/id/%s',
-           'label' => $this->_('Supprimer'),
-           'icon' => 'delete'],
-          'anchorOptions' => ['data-popup' => 'true']];
-
-
-  return $this->renderModelActions($model, $map);
-};
-
-
 $description = (new Class_TableDescription('agendas'))
   ->addColumn($this->_('Libellé'), 'label')
   ->addColumn($this->_('Nombre d\'événements'), $number_of_events)
@@ -62,6 +43,6 @@ $description = (new Class_TableDescription('agendas'))
               {
                 return $model->autoharvest ? $this->_('Oui') : $this->_('Non');
               })
-  ->addRowAction($actions);
+  ->addRowAction(function($model) { return $this->renderPluginsActions($model); });
 
 echo $this->renderTable($description, $this->agendas, ['sorter' => true]);
diff --git a/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php b/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php
new file mode 100644
index 0000000000000000000000000000000000000000..3a92d345d0fa282a0c7c9529b7b546b149396525
--- /dev/null
+++ b/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class ZendAfi_Controller_Plugin_Manager_ExternalAgenda extends ZendAfi_Controller_Plugin_Manager_Manager {
+  public function getActions($model) {
+    return [
+            ['url' => '/admin/external-agendas/import/id/%s',
+             'icon' => 'test',
+             'label' => $this->_('Moissonner')
+            ],
+            ['url' => '/admin/external-agendas/edit/id/%s',
+             'icon' => 'edit',
+             'label' => $this->_('Modifier'),
+             'anchorOptions' => ['data-popup' => 'true']],
+            ['url' => '/admin/external-agendas/delete/id/%s',
+             'label' => $this->_('Supprimer'),
+             'icon' => 'delete',
+             'anchorOptions' => ['data-popup' => 'true']]
+            ];
+  }
+}
\ No newline at end of file