2021-06-18 07:13:56 +00:00
|
|
|
{{!
|
|
|
|
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/>.
|
|
|
|
}}
|
|
|
|
{{!
|
2021-11-24 07:29:43 +00:00
|
|
|
@template mod_htmlcert/mobile_view_activity_page
|
2021-06-18 07:13:56 +00:00
|
|
|
|
|
|
|
The main page to view the custom certificate activity
|
|
|
|
|
|
|
|
Classes required for JS:
|
|
|
|
* None
|
|
|
|
|
|
|
|
Data attibutes required for JS:
|
|
|
|
* All data attributes are required
|
|
|
|
|
|
|
|
Context variables required for this template:
|
|
|
|
* certificate
|
|
|
|
* cmid
|
|
|
|
* hasissues
|
|
|
|
* issues
|
|
|
|
* showgroups
|
|
|
|
* groups
|
|
|
|
* canmanage
|
|
|
|
* requiredtimemet
|
|
|
|
* hasrecipients
|
|
|
|
* recipients
|
|
|
|
* fileurl
|
|
|
|
* showreport
|
|
|
|
* currenttimestamp
|
|
|
|
|
|
|
|
Example context (json):
|
|
|
|
{
|
|
|
|
"certificate": {
|
|
|
|
"id": "1",
|
|
|
|
"course": "2",
|
|
|
|
"name": "A rad certificate name!",
|
|
|
|
"intro": "A certificate",
|
|
|
|
"requiredtime": "60"
|
|
|
|
},
|
|
|
|
"cmid": "25",
|
|
|
|
"issue": {
|
|
|
|
"timecreated": "1528370177"
|
|
|
|
},
|
|
|
|
"showgroups": "true",
|
|
|
|
"groups": [
|
|
|
|
{
|
|
|
|
"id": "2",
|
|
|
|
"selected": "false",
|
|
|
|
"name": "Group A"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"canmanage": "true",
|
|
|
|
"requiredtimemet": "true",
|
2021-11-24 07:29:43 +00:00
|
|
|
"fileurl": "http://yoursite.com/mod/htmlcert/mobile/pluginfile.php?id=4",
|
2021-06-18 07:13:56 +00:00
|
|
|
"showreport": "true",
|
|
|
|
"hasrecipients": "true",
|
|
|
|
"recipients": [
|
|
|
|
{
|
|
|
|
"id": "2",
|
|
|
|
"issueid": "3",
|
|
|
|
"displayname": "Michaelangelo (Mickey)",
|
2021-11-24 07:29:43 +00:00
|
|
|
"fileurl": "http://yoursite.com/mod/htmlcert/mobile/pluginfile.php?id=4",
|
2021-06-18 07:13:56 +00:00
|
|
|
"timecreated": "1528370177"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"currenttimestamp": "1528370177"
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
{{=<% %>=}}
|
2021-11-24 07:29:43 +00:00
|
|
|
<core-course-module-description description="<% certificate.intro %>" component="mod_htmlcert" componentId="<% cmid %>"></core-course-module-description>
|
2021-06-18 07:13:56 +00:00
|
|
|
<ion-list>
|
|
|
|
<%^canmanage%>
|
|
|
|
<%#requiredtimemet%>
|
|
|
|
<ion-item>
|
|
|
|
<ion-label>
|
2021-11-24 07:29:43 +00:00
|
|
|
{{ 'plugin.mod_htmlcert.receiveddate' | translate }}
|
2021-06-18 07:13:56 +00:00
|
|
|
<br />
|
|
|
|
<div class="timerewarded">
|
|
|
|
<%#issue%>
|
|
|
|
{{ <% timecreated %> | coreToLocaleString }}
|
|
|
|
<%/issue%>
|
|
|
|
<%^issue%>
|
2021-11-24 07:29:43 +00:00
|
|
|
{{ 'plugin.mod_htmlcert.notissued' | translate }}
|
2021-06-18 07:13:56 +00:00
|
|
|
<%/issue%>
|
|
|
|
</div>
|
|
|
|
</ion-label>
|
|
|
|
<div slot="end" class="flex-row">
|
2021-11-24 07:29:43 +00:00
|
|
|
<ion-button fill="clear" [core-download-file]="{fileurl: '<% fileurl %>', timemodified: '<% currenttimestamp %>'}" moduleId="<% cmid %>" courseId="<% certificate.course %>" component="mod_htmlcert" [attr.aria-label]="'core.download' | translate">
|
2021-06-18 07:13:56 +00:00
|
|
|
<ion-icon name="cloud-download" slot="icon-only" aria-hidden="true"></ion-icon>
|
|
|
|
</ion-button>
|
|
|
|
</div>
|
|
|
|
</ion-item>
|
|
|
|
<%/requiredtimemet%>
|
|
|
|
<%^requiredtimemet%>
|
|
|
|
<ion-item>
|
|
|
|
<ion-label>
|
2021-11-24 07:29:43 +00:00
|
|
|
<p>{{ 'plugin.mod_htmlcert.requiredtimenotmet' | translate: {$a: { requiredtime: <% certificate.requiredtime %>} } }}</p>
|
2021-06-18 07:13:56 +00:00
|
|
|
</ion-label>
|
|
|
|
</ion-item>
|
|
|
|
<%/requiredtimemet%>
|
|
|
|
<%/canmanage%>
|
|
|
|
<%#canmanage%>
|
2021-11-24 07:29:43 +00:00
|
|
|
<ion-button expand="block" class="ion-margin" core-course-download-module-main-file moduleId="<% cmid %>" courseId="<% certificate.course %>" component="mod_htmlcert" [files]="[{fileurl: '<% fileurl %>', timemodified: '<% currenttimestamp %>'}]">
|
2021-06-18 07:13:56 +00:00
|
|
|
<ion-icon name="cloud-download" slot="start" aria-hidden="true"></ion-icon>
|
2021-11-24 07:29:43 +00:00
|
|
|
{{ 'plugin.mod_htmlcert.gethtmlcert' | translate }}
|
2021-06-18 07:13:56 +00:00
|
|
|
</ion-button>
|
|
|
|
<%/canmanage%>
|
|
|
|
<%#showreport%>
|
|
|
|
<ion-item>
|
|
|
|
<ion-label>
|
2021-11-24 07:29:43 +00:00
|
|
|
{{ 'plugin.mod_htmlcert.listofissues' | translate: { $a: <% numrecipients %> } }}
|
2021-06-18 07:13:56 +00:00
|
|
|
</ion-label>
|
|
|
|
</ion-item>
|
|
|
|
<%#showgroups%>
|
|
|
|
<ion-item>
|
2021-11-24 07:29:43 +00:00
|
|
|
<ion-label>{{ 'plugin.mod_htmlcert.selectagroup' | translate }}</ion-label>
|
2021-06-18 07:13:56 +00:00
|
|
|
<ion-select [(ngModel)]="CONTENT_OTHERDATA.group" name="group" (ionChange)="updateContent({cmid: <% cmid %>, courseid: <% certificate.course %>, group: CONTENT_OTHERDATA.group})" interface="popover">
|
|
|
|
<%#groups%>
|
|
|
|
<ion-select-option [value]="<% id %>"><% name %></ion-select-option>
|
|
|
|
<%/groups%>
|
|
|
|
</ion-select>
|
|
|
|
</ion-item>
|
|
|
|
<%/showgroups%>
|
|
|
|
<%#hasrecipients%>
|
|
|
|
<%#recipients%>
|
|
|
|
<ion-item>
|
|
|
|
<ion-label>
|
|
|
|
<% displayname %>
|
|
|
|
<br />
|
|
|
|
<div class="timerewarded">{{ <% timecreated %> | coreToLocaleString }}</div>
|
|
|
|
</ion-label>
|
|
|
|
<div slot="end" class="flex-row">
|
2021-11-24 07:29:43 +00:00
|
|
|
<ion-button fill="clear" [core-download-file]="{fileurl: '<% fileurl %>', timemodified: '<% currenttimestamp %>'}" moduleId="<% cmid %>" courseId="<% certificate.course %>" component="mod_htmlcert" [attr.aria-label]="'core.download' | translate">
|
2021-06-18 07:13:56 +00:00
|
|
|
<ion-icon name="cloud-download" slot="icon-only" aria-hidden="true"></ion-icon>
|
|
|
|
</ion-button>
|
|
|
|
<%#canmanage%>
|
2021-11-24 07:29:43 +00:00
|
|
|
<ion-button fill="clear" core-site-plugins-call-ws name="mod_htmlcert_delete_issue"
|
2021-06-18 07:13:56 +00:00
|
|
|
[params]="{certificateid: <% certificate.id %>, issueid: <% issueid %>}"
|
|
|
|
[preSets]="{getFromCache: 0, saveToCache: 0, typeExpected: 'boolean'}"
|
2021-11-24 07:29:43 +00:00
|
|
|
confirmMessage="{{ 'plugin.mod_htmlcert.deleteissueconfirm' | translate }}"
|
2021-06-18 07:13:56 +00:00
|
|
|
refreshOnSuccess="true" [attr.aria-label]="'core.delete' | translate">
|
|
|
|
<ion-icon name="fas-trash" slot="icon-only" aria-hidden="true"></ion-icon>
|
|
|
|
</ion-button>
|
|
|
|
<%/canmanage%>
|
|
|
|
</div>
|
|
|
|
</ion-item>
|
|
|
|
<%/recipients%>
|
|
|
|
<%/hasrecipients%>
|
|
|
|
<%^hasrecipients%>
|
|
|
|
<ion-item>
|
|
|
|
<ion-label>
|
2021-11-24 07:29:43 +00:00
|
|
|
{{ 'plugin.mod_htmlcert.nothingtodisplay' | translate }}
|
2021-06-18 07:13:56 +00:00
|
|
|
</ion-label>
|
|
|
|
</ion-item>
|
|
|
|
<%/hasrecipients%>
|
|
|
|
<%/showreport%>
|
|
|
|
</ion-list>
|