/**
  * Get the plural name of the current module.
  *
  * @return string The module name plural (Videofiles)
  */
 protected function get_module_name_plural()
 {
     if (isset(self::$modulenameplural)) {
         return self::$modulenameplural;
     }
     self::$modulenameplural = get_string('modulenameplural', 'videofile');
     return self::$modulenameplural;
 }
 /**
  * Renders videofile video.
  *
  * @param videofile $videofile
  * @return string HTML
  */
 public function video(videofile $videofile)
 {
     $output = '';
     $contextid = $videofile->get_context()->id;
     // Open videofile div.
     $vclass = $videofile->get_instance()->responsive ? 'videofile videofile-responsive' : 'videofile';
     $output .= $this->output->container_start($vclass);
     // Open video tag.
     $posterurl = $this->get_poster_image($contextid);
     $output .= $this->get_video_element_html($videofile, $posterurl);
     // Elements for video sources.
     $output .= $this->get_video_source_elements_html($contextid);
     // Elements for caption tracks.
     $output .= $this->get_video_caption_track_elements_html($contextid);
     // Close video tag.
     $output .= html_writer::end_tag('video');
     // Alternative video links in case video isn't showing/playing properly.
     $output .= $this->get_alternative_video_links_html($contextid);
     // Close videofile div.
     $output .= $this->output->container_end();
     return $output;
 }
Beispiel #3
0
/**
 * Deletes an instance of the videofile from the database
 *
 * Given an ID of an instance of this module,
 * this function will permanently delete the instance
 * and any data that depends on it.
 *
 * @param int $id Id of the module instance
 * @return boolean
 */
function videofile_delete_instance($id)
{
    require_once dirname(__FILE__) . '/locallib.php';
    $cm = get_coursemodule_from_instance('videofile', $id, 0, false, MUST_EXIST);
    $context = context_module::instance($cm->id);
    $videofile = new videofile($context, null, null);
    return $videofile->delete_instance();
}
// 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/>.
/**
 * Prints a particular instance of videofile
 *
 * @package    mod_videofile
 * @copyright  2013 Jonas Nockert <*****@*****.**>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
require_once dirname(__FILE__) . '/../../config.php';
require_once dirname(__FILE__) . '/locallib.php';
$id = required_param('id', PARAM_INT);
$cm = get_coursemodule_from_id('videofile', $id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
$context = context_module::instance($cm->id);
$videofile = new videofile($context, $cm, $course);
require_login($course, true, $cm);
require_capability('mod/videofile:view', $context);
$PAGE->set_pagelayout('incourse');
$url = new moodle_url('/mod/videofile/view.php', array('id' => $id));
$PAGE->set_url('/mod/videofile/view.php', array('id' => $cm->id));
// Update 'viewed' state if required by completion system.
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
// Log viewing.
add_to_log($course->id, 'videofile', 'view', 'view.php?id=' . $cm->id, $videofile->get_instance()->id, $cm->id);
$renderer = $PAGE->get_renderer('mod_videofile');
echo $renderer->video_page($videofile);