Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
core_h5p_generator Class Reference
Inheritance diagram for core_h5p_generator:
component_generator_base

Public Member Functions

 create_content_types (array $typestonotinstall, core $core)
 Create H5P content type records in the h5p_libraries database table. More...
 
 create_contents_libraries_record (string $h5pid, int $libid, string $dependencytype='preloaded')
 Create a record in the h5p_contents_libraries database table. More...
 
 create_file (string $file, string $content='')
 Convenience function to create a file. More...
 
 create_h5p_record (int $mainlibid, string $jsoncontent=null, string $filtered=null)
 Create a record in the h5p database table. More...
 
 create_library (string $uploaddirectory, int $libraryid, string $machinename, int $majorversion, int $minorversion)
 Create the necessary files and return an array structure for a library. More...
 
 create_library_dependency_record (int $libid, int $requiredlibid, string $dependencytype='preloaded')
 Create a record in the h5p_library_dependencies database table. More...
 
 create_library_record (string $machinename, string $title, int $majorversion=1, int $minorversion=0, int $patchversion=1, string $semantics='', string $addto=null)
 Create a record in the h5p_libraries database table. More...
 
 generate_h5p_data (bool $createlibraryfiles=false)
 Populate H5P database tables with relevant data to simulate the process of adding H5P content. More...
 
 reset ()
 To be called from data reset code only, do not use in tests. More...
 

Protected Member Functions

 add_libfile_to_array (string $type, string $path, string $version, &$files)
 Creates the file record. More...
 

Protected Attributes

testing_data_generator $datagenerator
 

Member Function Documentation

◆ add_libfile_to_array()

core_h5p_generator::add_libfile_to_array ( string  $type,
string  $path,
string  $version,
$files 
)
protected

Creates the file record.

Currently used for the cache tests.

Parameters
string$typeEither 'scripts' or 'styles'.
string$pathPath to the file in the file system.
string$versionNot really needed at the moment.

◆ create_content_types()

core_h5p_generator::create_content_types ( array  $typestonotinstall,
core  $core 
)

Create H5P content type records in the h5p_libraries database table.

Parameters
array$typestonotinstallH5P content types that should not be installed
core$coreh5p_test_core instance required to use the exttests URL
Return values
arrayData of the content types not installed.

◆ create_contents_libraries_record()

core_h5p_generator::create_contents_libraries_record ( string  $h5pid,
int  $libid,
string  $dependencytype = 'preloaded' 
)

Create a record in the h5p_contents_libraries database table.

Parameters
string$h5pidThe ID of the H5P content
int$libidThe ID of the library
string$dependencytypeThe dependency type
Return values
intThe ID of the added record

◆ create_file()

core_h5p_generator::create_file ( string  $file,
string  $content = '' 
)

Convenience function to create a file.

Parameters
string$filepath to a file.
string$contentfile content.

◆ create_h5p_record()

core_h5p_generator::create_h5p_record ( int  $mainlibid,
string  $jsoncontent = null,
string  $filtered = null 
)

Create a record in the h5p database table.

Parameters
int$mainlibidThe ID of the content's main library
string$jsoncontentThe content in json format
string$filteredThe filtered content parameters
Return values
intThe ID of the added record

◆ create_library()

core_h5p_generator::create_library ( string  $uploaddirectory,
int  $libraryid,
string  $machinename,
int  $majorversion,
int  $minorversion 
)

Create the necessary files and return an array structure for a library.

Parameters
string$uploaddirectoryBase directory for the library.
int$libraryidLibrary id.
string$machinenameName for this library.
int$majorversionMajor version (any number will do).
int$minorversionMinor version (any number will do).
Return values
arrayA list of library data and files that the core API will understand.

◆ create_library_dependency_record()

core_h5p_generator::create_library_dependency_record ( int  $libid,
int  $requiredlibid,
string  $dependencytype = 'preloaded' 
)

Create a record in the h5p_library_dependencies database table.

Parameters
int$libidThe ID of the library
int$requiredlibidThe ID of the required library
string$dependencytypeThe dependency type
Return values
intThe ID of the added record

◆ create_library_record()

core_h5p_generator::create_library_record ( string  $machinename,
string  $title,
int  $majorversion = 1,
int  $minorversion = 0,
int  $patchversion = 1,
string  $semantics = '',
string  $addto = null 
)

Create a record in the h5p_libraries database table.

Parameters
string$machinenameThe library machine name
string$titleThe library's name
int$majorversionThe library's major version
int$minorversionThe library's minor version
int$patchversionThe library's patch version
string$semanticsJson describing the content structure for the library
string$addtoThe plugin configuration data
Return values
stdClassAn object representing the added library record

◆ generate_h5p_data()

core_h5p_generator::generate_h5p_data ( bool  $createlibraryfiles = false)

Populate H5P database tables with relevant data to simulate the process of adding H5P content.

Parameters
bool$createlibraryfilesWhether to create and store library files on the filesystem
Return values
stdClassAn object representing the added H5P records

◆ reset()

component_generator_base::reset ( )
inherited

The documentation for this class was generated from the following file: