Improved OLPC squid filtering plugin - refs #4796

skala
Yannick Warnier 13 years ago
parent 1235cff872
commit 8aff94067a
  1. 2
      plugin/olpc_peru_filter/lang/english.php
  2. 2
      plugin/olpc_peru_filter/lang/spanish.php
  3. 9
      plugin/olpc_peru_filter/lib/olpc_peru_filter_plugin.class.php

@ -5,4 +5,4 @@ $strings['plugin_title'] = "OLPC Peru Filter plugin";
$strings['plugin_comment'] = "Add the possibility to configure the filtering of external contents through a Squid filter on XS server of the OLPC Peru project";
$strings['tool_enable'] = 'Enable OLPC Peru Filter';
$strings['tool_enable_help'] = "When this option is enabled, a new configuration section will appear in the course configuration settings, which will allow you to select categories of contents for filtering through Squid on an XS school server of the OLPC Peru project (this can easily be extended to other servers)";
$strings['olpc_peru_filter_filter'] = 'Squid filter';

@ -5,4 +5,4 @@ $strings['plugin_title'] = "Plugin para filtro de OLPC Peru";
$strings['plugin_comment'] = "Añadir la posibilidad de configurar el filtrado de contenidos externos a través del filtro Squid de un servidor XS del proyecto OLPC Perú";
$strings['tool_enable'] = 'Activar filtro OLPC Perú';
$strings['tool_enable_help'] = "Cuando esta opción esté activada, una nueva sección de configuración aparecerá en los parámetros de configuración, lo que le permitirá de seleccionar categorías de contenidos para filtrar a través de Squid en un servidor XS de escuela dentro del proyecto OLPC Perú (podría ser extendido a otros servidores)";
$strings['olpc_peru_filter_filter'] = 'Filtro Squid';

@ -2,9 +2,9 @@
/* For licensing terms, see /license.txt */
/* To show the plugin course icons you need to add these icons in the main/img Chamilo platform
* main/img/icons/22/plugin_name.png
* main/img/icons/64/plugin_name.png
* main/img/icons/64/plugin_name_na.png
* main/img/icons/22/plugin_name.png
* main/img/icons/64/plugin_name.png
* main/img/icons/64/plugin_name_na.png
*/
class OLPC_Peru_FilterPlugin extends Plugin
{
@ -13,6 +13,7 @@ class OLPC_Peru_FilterPlugin extends Plugin
//When creating a new course, these settings are added to the course
public $course_settings = array(
// array('name' => 'big_blue_button_welcome_message', 'type' => 'text'),
array('name' => 'olpc_peru_filter_filter', 'type' => 'textarea'),
// array('name' => 'big_blue_button_record_and_store', 'type' => 'checkbox')
);
@ -27,7 +28,7 @@ class OLPC_Peru_FilterPlugin extends Plugin
function install() {
//Installing course settings
$this->install_course_fields_in_all_courses();
$this->install_course_fields_in_all_courses(false);
}
function uninstall() {

Loading…
Cancel
Save