mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 07:52:48 +02:00
Merge branch 'MDL-75413-master' of https://github.com/sarjona/moodle
This commit is contained in:
commit
c739cc14af
lib/classes
mod/data/preset/resources
@ -1853,6 +1853,7 @@ class core_plugin_manager {
|
||||
'imagegallery',
|
||||
'journal',
|
||||
'proposals',
|
||||
'resources',
|
||||
),
|
||||
|
||||
'fileconverter' => array(
|
||||
|
26
mod/data/preset/resources/addtemplate.html
Normal file
26
mod/data/preset/resources/addtemplate.html
Normal file
@ -0,0 +1,26 @@
|
||||
<div class="resources-addentry">
|
||||
<div class="form-group">
|
||||
<label for="[[Title#id]]">Title</label><br/>
|
||||
[[Title]]
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="[[Author#id]]">Author</label><br/>
|
||||
[[Author]]
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="[[Cover#id]]">Cover</label><br/>
|
||||
[[Cover]]
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="[[Description#id]]">Description</label><br/>
|
||||
[[Description]]
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="[[Web link#id]]">Web link</label><br/>
|
||||
[[Web link]]
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="[[Type#id]]">Type</label><br/>
|
||||
[[Type]]
|
||||
</div>
|
||||
</div>
|
24
mod/data/preset/resources/asearchtemplate.html
Normal file
24
mod/data/preset/resources/asearchtemplate.html
Normal file
@ -0,0 +1,24 @@
|
||||
<div class="resources-asearch container">
|
||||
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3">
|
||||
<div class="form-group col">
|
||||
<label for="[[Title#id]]">Title</label><br/>
|
||||
[[Title]]
|
||||
</div>
|
||||
<div class="form-group col">
|
||||
<label for="[[Author#id]]">Author</label><br/>
|
||||
[[Author]]
|
||||
</div>
|
||||
<div class="form-group col">
|
||||
<label for="[[Description#id]]">Description</label><br/>
|
||||
[[Description]]
|
||||
</div>
|
||||
<div class="form-group col">
|
||||
<label for="[[Web link#id]]">Link</label><br/>
|
||||
[[Web link]]
|
||||
</div>
|
||||
<div class="form-group col">
|
||||
<label for="[[Type#id]]">Type</label><br/>
|
||||
[[Type]]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
37
mod/data/preset/resources/classes/privacy/provider.php
Normal file
37
mod/data/preset/resources/classes/privacy/provider.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
namespace datapreset_resources\privacy;
|
||||
|
||||
/**
|
||||
* Privacy provider implementation for datapreset_resources.
|
||||
*
|
||||
* @package datapreset_resources
|
||||
* @copyright 2022 Sara Arjona <sara@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \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
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
}
|
14
mod/data/preset/resources/csstemplate.css
Normal file
14
mod/data/preset/resources/csstemplate.css
Normal file
@ -0,0 +1,14 @@
|
||||
/****** Single View CSS ******/
|
||||
|
||||
.resources-single .img-wrapper img {
|
||||
flex-shrink: 0;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
/***** Add entry CSS *****/
|
||||
|
||||
.resources-addentry .form-group label,
|
||||
.resources-asearch .form-group label {
|
||||
font-weight: bold;
|
||||
padding-top: 20px;
|
||||
}
|
0
mod/data/preset/resources/jstemplate.js
Normal file
0
mod/data/preset/resources/jstemplate.js
Normal file
28
mod/data/preset/resources/lang/en/datapreset_resources.php
Normal file
28
mod/data/preset/resources/lang/en/datapreset_resources.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Strings for component 'datapreset_resources', language 'en'.
|
||||
*
|
||||
* @package datapreset_resources
|
||||
* @copyright 2022 Sara Arjona <sara@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['modulename'] = 'Resources';
|
||||
$string['modulename_help'] = 'Collect resources such as web links or book reviews in a table, with links to the detailed view.';
|
||||
$string['pluginname'] = 'Resources';
|
||||
$string['privacy:metadata'] = 'The Resources plugin does not store any personal data.';
|
7
mod/data/preset/resources/listtemplate.html
Normal file
7
mod/data/preset/resources/listtemplate.html
Normal file
@ -0,0 +1,7 @@
|
||||
<tr>
|
||||
<th scope="row"><a href="##moreurl##">[[Title]]</a></th>
|
||||
<td>[[Type]]</td>
|
||||
<td>[[Author]]</td>
|
||||
<td>[[Web link]]</td>
|
||||
<td>##actionsmenu##</td>
|
||||
</tr>
|
2
mod/data/preset/resources/listtemplatefooter.html
Normal file
2
mod/data/preset/resources/listtemplatefooter.html
Normal file
@ -0,0 +1,2 @@
|
||||
</tbody>
|
||||
</table>
|
11
mod/data/preset/resources/listtemplateheader.html
Normal file
11
mod/data/preset/resources/listtemplateheader.html
Normal file
@ -0,0 +1,11 @@
|
||||
<table id="resources-list" class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Title</th>
|
||||
<th scope="col">Type</th>
|
||||
<th scope="col">Author</th>
|
||||
<th scope="col">Link</th>
|
||||
<th scope="col"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
62
mod/data/preset/resources/preset.xml
Normal file
62
mod/data/preset/resources/preset.xml
Normal file
@ -0,0 +1,62 @@
|
||||
<preset>
|
||||
|
||||
<settings>
|
||||
<intro></intro>
|
||||
<comments>0</comments>
|
||||
<requiredentries>0</requiredentries>
|
||||
<requiredentriestoview>0</requiredentriestoview>
|
||||
<maxentries>0</maxentries>
|
||||
<rssarticles>0</rssarticles>
|
||||
<approval>0</approval>
|
||||
<manageapproved>1</manageapproved>
|
||||
<defaultsortdir>0</defaultsortdir>
|
||||
<defaultsort>0</defaultsort>
|
||||
</settings>
|
||||
|
||||
<field>
|
||||
<type>text</type>
|
||||
<name>Title</name>
|
||||
<required>0</required>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<type>text</type>
|
||||
<name>Author</name>
|
||||
<required>0</required>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<type>picture</type>
|
||||
<name>Cover</name>
|
||||
<required>0</required>
|
||||
<param3>0</param3>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<type>textarea</type>
|
||||
<name>Description</name>
|
||||
<required>0</required>
|
||||
<param2>60</param2>
|
||||
<param3>10</param3>
|
||||
<param4>1</param4>
|
||||
<param5>0</param5>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<type>url</type>
|
||||
<name>Web link</name>
|
||||
<required>0</required>
|
||||
<param1>1</param1>
|
||||
<param3>1</param3>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<type>menu</type>
|
||||
<name>Type</name>
|
||||
<required>0</required>
|
||||
<param1>Type1
|
||||
Type2
|
||||
Type3</param1>
|
||||
</field>
|
||||
|
||||
</preset>
|
29
mod/data/preset/resources/rsstemplate.html
Normal file
29
mod/data/preset/resources/rsstemplate.html
Normal file
@ -0,0 +1,29 @@
|
||||
<div class="resources-single my-5">
|
||||
<h3 class="card-title">[[Title]]</h3>
|
||||
<div class="resources-single-body my-5">
|
||||
<div class="d-flex">
|
||||
<div class="single-entry-header w-100">
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Author</strong></div>
|
||||
<div class="col-9 col-md-11">[[Author]]</div>
|
||||
</div>
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Type</strong></div>
|
||||
<div class="col-9 col-md-11">[[Type]]</div>
|
||||
</div>
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Link</strong></div>
|
||||
<div class="col-9 col-md-11">[[Web link]]</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-wrapper">[[Cover]]</div>
|
||||
</div>
|
||||
|
||||
<div class="row singleentry-content">
|
||||
<div class="col">
|
||||
<h4 class="my-5">Description</h4>
|
||||
[[Description]]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
1
mod/data/preset/resources/rsstitletemplate.html
Normal file
1
mod/data/preset/resources/rsstitletemplate.html
Normal file
@ -0,0 +1 @@
|
||||
[[Title]]
|
32
mod/data/preset/resources/singletemplate.html
Normal file
32
mod/data/preset/resources/singletemplate.html
Normal file
@ -0,0 +1,32 @@
|
||||
<div class="resources-single my-5">
|
||||
<div class="d-flex">
|
||||
<h3 class="card-title">[[Title]]</h3>
|
||||
<div class="ml-auto">##actionsmenu##</div>
|
||||
</div>
|
||||
<div class="resources-single-body my-5">
|
||||
<div class="d-flex flex-column flex-md-row">
|
||||
<div class="single-entry-header w-100 pr-2">
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Author</strong></div>
|
||||
<div class="col-9 col-md-11">[[Author]]</div>
|
||||
</div>
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Type</strong></div>
|
||||
<div class="col-9 col-md-11">[[Type]]</div>
|
||||
</div>
|
||||
<div class="row my-3">
|
||||
<div class="col-3 col-md-1"><strong>Link</strong></div>
|
||||
<div class="col-9 col-md-11">[[Web link]]</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-wrapper">[[Cover]]</div>
|
||||
</div>
|
||||
|
||||
<div class="row singleentry-content">
|
||||
<div class="col">
|
||||
<h4 class="my-5">Description</h4>
|
||||
[[Description]]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
101
mod/data/preset/resources/tests/behat/resources_preset.feature
Normal file
101
mod/data/preset/resources/tests/behat/resources_preset.feature
Normal file
@ -0,0 +1,101 @@
|
||||
@mod @mod_data @datapreset @datapreset_resources
|
||||
Feature: Users can use the Resources preset
|
||||
In order to create a Resources database
|
||||
As a user
|
||||
I need to apply and use the Resources preset
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| student1 | Alice | Student | student1@example.com |
|
||||
| teacher1 | Pau | Teacher | teacher1@example.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category |
|
||||
| Course 1 | C1 | 0 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber |
|
||||
| data | Student resources | Database intro | C1 | data1 |
|
||||
And I am on the "Student resources" "data activity" page logged in as teacher1
|
||||
And I follow "Presets"
|
||||
And I click on "fullname" "radio" in the "Resources" "table_row"
|
||||
And I click on "Use preset" "button"
|
||||
And I click on "Continue" "button"
|
||||
And I click on "Continue" "button"
|
||||
And the following "mod_data > entries" exist:
|
||||
| database | user | Title | Description | Type | Author | Web link | Cover |
|
||||
| data1 | student1 | My favourite book | Book content | Type1 | The book author | http://myfavouritebook.cat | first.png |
|
||||
| data1 | teacher1 | My favourite podcast | Podcast content| Type2 | The podcast author | http://myfavouritepodcast.cat | second.png |
|
||||
|
||||
@javascript
|
||||
Scenario: Resources. Users view entries
|
||||
When I am on the "Student resources" "data activity" page logged in as student1
|
||||
Then I should see "My favourite book"
|
||||
And I should see "Type1"
|
||||
And I should see "The book author"
|
||||
And I should see "http://myfavouritebook.cat"
|
||||
And I should not see "Book content"
|
||||
And "Actions" "icon" should exist in the "#resources-list" "css_element"
|
||||
And I should see "My favourite podcast"
|
||||
And I should see "Type2"
|
||||
And I should see "The podcast author"
|
||||
And I should see "http://myfavouritepodcast.cat"
|
||||
And I should not see "Podcast content"
|
||||
# Single view.
|
||||
And I select "Single view" from the "jump" singleselect
|
||||
And I should see "My favourite book"
|
||||
And I should see "Type1"
|
||||
And I should see "The book author"
|
||||
And I should see "http://myfavouritebook.cat"
|
||||
And I should see "Book content"
|
||||
And "Actions" "icon" should exist in the ".resources-single" "css_element"
|
||||
And I should not see "My favourite podcast"
|
||||
And I should not see "Type2"
|
||||
And I should not see "The podcast author"
|
||||
And I should not see "http://myfavouritepodcast.cat"
|
||||
And I should not see "Podcast content"
|
||||
And I follow "Next"
|
||||
And I should see "My favourite podcast"
|
||||
And I should see "Type2"
|
||||
And I should see "The podcast author"
|
||||
And I should see "http://myfavouritepodcast.cat"
|
||||
And I should see "Podcast content"
|
||||
# This student can't edit or delete this entry, so the Actions menu shouldn't be displayed.
|
||||
And "Actions" "icon" should not exist in the ".resources-single" "css_element"
|
||||
And I should not see "My favourite book"
|
||||
And I should not see "Type1"
|
||||
And I should not see "The book author"
|
||||
And I should not see "http://myfavouritebook.cat"
|
||||
And I should not see "Book content"
|
||||
|
||||
@javascript
|
||||
Scenario: Resources. Users can search entries
|
||||
Given I am on the "Student resources" "data activity" page logged in as student1
|
||||
And "My favourite book" "text" should appear before "My favourite podcast" "text"
|
||||
When I click on "Advanced search" "checkbox"
|
||||
And I set the field "Title" to "book"
|
||||
And I press "Save settings"
|
||||
Then I should see "My favourite book"
|
||||
And I should not see "My favourite podcast"
|
||||
But I set the field "Title" to "favourite"
|
||||
And I set the field "Order" to "Descending"
|
||||
And I press "Save settings"
|
||||
And "My favourite podcast" "text" should appear before "My favourite book" "text"
|
||||
|
||||
@javascript
|
||||
Scenario: Resources. Users can add entries
|
||||
Given I am on the "Student resources" "data activity" page logged in as student1
|
||||
When I press "Add entry"
|
||||
And I set the field "Title" to "This is the title"
|
||||
And I set the field "Author" to "This is the author"
|
||||
And I set the field "Description" to "This is description."
|
||||
And I set the field "Web link" to "https://thisisthelink.cat"
|
||||
And I set the field "Type" to "Type2"
|
||||
And I press "Save"
|
||||
Then I should see "This is the title"
|
||||
And I should see "This is the author"
|
||||
And I should see "https://thisisthelink.cat"
|
||||
And I should see "Type2"
|
29
mod/data/preset/resources/version.php
Normal file
29
mod/data/preset/resources/version.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Data Resources preset version information.
|
||||
*
|
||||
* @package datapreset_resources
|
||||
* @copyright 2022 Sara Arjona <sara@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2022041900; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->requires = 2022041200; // Requires this Moodle version.
|
||||
$plugin->component = 'datapreset_resources'; // Full name of the plugin (used for diagnostics).
|
Loading…
x
Reference in New Issue
Block a user