Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions classes/privacy/provider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php
/**
* *************************************************************************
* * OOHOO - Tab Display **
* *************************************************************************
* @package mod **
* @subpackage tab **
* @name tab **
* @copyright oohoo.biz **
* @link http://oohoo.biz **
* @author Patrick Thibaudeau **
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later **
* *************************************************************************
* ************************************************************************ */

namespace mod_tab\privacy;

defined('MOODLE_INTERNAL') || die();

/**
* Privacy Subsystem for local_yukaltura implementing null_provider.
*/
class provider implements
// This plugin does not store any personal user data.
\core_privacy\local\metadata\null_provider {

/**
* Get the language string identifier with the component's language
* file to explain why this plugin stores no data.
*
* @return string - reason of why this plugin does not store users' data.
*/
public static function _get_reason() {
return 'privacy:metadata';
}
}
3 changes: 2 additions & 1 deletion lang/en/tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@
$string['taborder'] = 'Tab display activity order within menu';
$string['tab:addinstance'] = 'Add a new Tab Display';
$string['tab:view'] = 'View Tabs';
$string['updatethis'] = 'Update this tab display';
$string['updatethis'] = 'Update this tab display';
$string['privacy:metadata'] = 'The Tab display activity only displays content data.';