Moodle PHP Documentation 4.5
Moodle 4.5dev (Build: 20240606) (d3ae1391abe)
portfolio_format_richhtml Class Reference

Richhtml - html with attachments. More...

Inheritance diagram for portfolio_format_richhtml:
portfolio_format_rich portfolio_format

Static Public Member Functions

static conflicts ($format)
 Whether this format conflicts with the given format.
 
static file_output ($file, $options=null)
 Given a file, return a snippet of markup in whatever format to link to that file.
 
static get_file_directory ()
 For multipart formats, eg html with attachments, we need to have a directory to place associated files from inside the zip file.
 
static make_tag ($file, $path, $attributes)
 Create portfolio tag.
 
static mimetypes ()
 Return rich text mimetypes.
 

Detailed Description

Richhtml - html with attachments.

The most commonly used rich format eg inline images

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

Member Function Documentation

◆ conflicts()

static portfolio_format_richhtml::conflicts ( $format)
static

Whether this format conflicts with the given format.

This is used for the case where an export location "generally" supports something like FORMAT_PLAINHTML but then in a specific export case, must add attachments, which means that FORMAT_RICHHTML is supported in that case, which implies removing support for FORMAT_PLAINHTML. Note that conflicts don't have to be bi-directional (eg FORMAT_PLAINHTML conflicts with FORMAT_RICHHTML but not the other way around) and things within the class hierarchy are resolved automatically anyway. This is really just between subclasses of format_rich and subclasses of format_file.

Todo
MDL-31305 - revisit the conflict with file, since we zip here
Parameters
string$formatone of the FORMAT_XX constants
Return values
bool

Reimplemented from portfolio_format.

◆ file_output()

static portfolio_format_richhtml::file_output ( $file,
$options = null )
static

Given a file, return a snippet of markup in whatever format to link to that file.

Usually involves the path given by get_file_directory. This is not supported in subclasses of portfolio_format_file since they're all just single files.

See also
get_file_directory
Parameters
stored_file$fileinformation for existing file
array$optionsarray of options to pass. can contain: attributes => hash of existing html attributes (eg title, height, width, etc)
Return values
string

Reimplemented from portfolio_format.

◆ get_file_directory()

static portfolio_format_richhtml::get_file_directory ( )
static

For multipart formats, eg html with attachments, we need to have a directory to place associated files from inside the zip file.

this is the name of that directory

Return values
string

Reimplemented from portfolio_format.

◆ make_tag()

static portfolio_format::make_tag ( $file,
$path,
$attributes )
staticinherited

Create portfolio tag.

Parameters
stored_file$filefile information object
string$pathfile path
array$attributesportfolio attributes
Return values
string

◆ mimetypes()

static portfolio_format_rich::mimetypes ( )
staticinherited

Return rich text mimetypes.

Return values
array

Reimplemented from portfolio_format.


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