mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
13 lines
314 B
PHP
13 lines
314 B
PHP
<?php
|
|
/**
|
|
* Utility functions for the grid fields extension module.
|
|
*/
|
|
class GridFieldExtensions {
|
|
|
|
public static function include_requirements() {
|
|
Requirements::css('gridfieldextensions/css/GridFieldExtensions.css');
|
|
Requirements::javascript('gridfieldextensions/javascript/GridFieldExtensions.js');
|
|
}
|
|
|
|
}
|