. namespace core_course; /** * Constants related to courses. * * @package core_course * @copyright The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class constants { /** @var int the length of the course.shortname field. */ public const FULLNAME_MAXIMUM_LENGTH = 1333; /** @var int the length of the course.shortname field. */ public const SHORTNAME_MAXIMUM_LENGTH = 255; }