mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 10:26:40 +02:00
MDL-44358 inform developers that CSS handling was refactored
This commit is contained in:
parent
98245a84a2
commit
31f28b6ac2
3 changed files with 12 additions and 1 deletions
|
@ -15,10 +15,12 @@
|
|||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* This file contains CSS related class, and function for the CSS optimiser
|
||||
* This file contains CSS related class, and function for the CSS optimiser.
|
||||
*
|
||||
* Please see the {@link css_optimiser} class for greater detail.
|
||||
*
|
||||
* NOTE: these functions are not expected to be used from any addons.
|
||||
*
|
||||
* @package core
|
||||
* @subpackage cssoptimiser
|
||||
* @copyright 2012 Sam Hemelryk
|
||||
|
|
|
@ -721,6 +721,8 @@ class theme_config {
|
|||
/**
|
||||
* Get the whole css stylesheet for production mode.
|
||||
*
|
||||
* NOTE: this method is not expected to be used from any addons.
|
||||
*
|
||||
* @return string CSS markup, already optimised and compressed
|
||||
*/
|
||||
public function get_css_content() {
|
||||
|
@ -761,6 +763,8 @@ class theme_config {
|
|||
* Get the theme designer css markup,
|
||||
* the parameters are coming from css_urls().
|
||||
*
|
||||
* NOTE: this method is not expected to be used from any addons.
|
||||
*
|
||||
* @param string $type
|
||||
* @param string $subtype
|
||||
* @param string $sheet
|
||||
|
@ -837,6 +841,9 @@ class theme_config {
|
|||
|
||||
/**
|
||||
* Get the whole css stylesheet for editor iframe.
|
||||
*
|
||||
* NOTE: this method is not expected to be used from any addons.
|
||||
*
|
||||
* @return string CSS markup
|
||||
*/
|
||||
public function get_css_content_editor() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue