mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-49460 tool_lp: Adding user learning plans
Basic CRUD skeleton with external functions.
This commit is contained in:
parent
d9a39950b2
commit
4db373d5cb
21 changed files with 1653 additions and 27 deletions
|
@ -23,7 +23,7 @@
|
|||
* drag-samenode
|
||||
* competencyframeworkactions
|
||||
|
||||
Data attibutes required for JS:
|
||||
Data attributes required for JS:
|
||||
* data-region = managecompetencies
|
||||
* data-frameworkid = id
|
||||
* data-action = deletecompetencyframework
|
||||
|
|
101
admin/tool/lp/templates/plans_page.mustache
Normal file
101
admin/tool/lp/templates/plans_page.mustache
Normal file
|
@ -0,0 +1,101 @@
|
|||
{{!
|
||||
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/>.
|
||||
}}
|
||||
{{!
|
||||
User learning plans page.
|
||||
|
||||
Classes required for JS:
|
||||
* planactions
|
||||
|
||||
Data attributes required for JS:
|
||||
* data-region = plans
|
||||
* data-planid = plans.id
|
||||
* data-userid = userid
|
||||
* data-action = deleteplan
|
||||
|
||||
Context variables required for this template:
|
||||
* userid - The plan user id
|
||||
* pluginbaseurl - tool_lp base url
|
||||
* plans - The list of learning plans
|
||||
* navigation - array of strings containing buttons for navigation
|
||||
}}
|
||||
|
||||
<div data-region="plans" data-userid="{{userid}}">
|
||||
<table class="generaltable fullwidth">
|
||||
<caption>{{#str}}listplanscaption, tool_lp{{/str}}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{{#str}}planname, tool_lp{{/str}}</th>
|
||||
<th scope="col">{{#str}}status, tool_lp{{/str}}</th>
|
||||
<th scope="col">{{#str}}actions, tool_lp{{/str}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#plans}}
|
||||
<tr>
|
||||
<td>
|
||||
<span><a href="{{pluginbaseurl}}/plan.php?id={{id}}">{{name}}</a></span>
|
||||
</td>
|
||||
<td>{{statusname}}</td>
|
||||
<td>
|
||||
{{#usercanupdate}}
|
||||
<div style="display: inline-block;">
|
||||
<ul class="planactions hide">
|
||||
<li>
|
||||
<a href="{{pluginbaseurl}}/editplan.php?id={{id}}">
|
||||
{{#pix}}t/edit{{/pix}}{{#str}}editthisplan, tool_lp{{/str}}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a data-action="deleteplan" data-planid="{{id}}" href="#">
|
||||
{{#pix}}t/delete{{/pix}}{{#str}}deletethisplan, tool_lp{{/str}}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
{{/usercanupdate}}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{{/plans}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{{^plans}}
|
||||
<p class="alert-info">
|
||||
{{#str}}nouserplans, tool_lp{{/str}}
|
||||
</p>
|
||||
{{/plans}}
|
||||
|
||||
<div class="btn-group pull-right">
|
||||
{{#navigation}}
|
||||
{{{.}}}
|
||||
{{/navigation}}
|
||||
</div>
|
||||
|
||||
{{#js}}
|
||||
// Initialise the JS.
|
||||
require(['tool_lp/plandelete',
|
||||
'core/menu'],
|
||||
function(deleteMod, menu) {
|
||||
|
||||
deleteMod.init();
|
||||
|
||||
menu.menu('{{#str}}edit{{/str}}', '.planactions');
|
||||
});
|
||||
|
||||
{{/js}}
|
||||
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue