File: /home/grainesdfo/www/wp-content/plugins/raven/includes/core/library/documents/header.php
<?php
/**
* Add Library Header Document.
*
* @package Raven
* @since 1.0.0
*/
namespace Raven\Core\Library\Documents;
defined( 'ABSPATH' ) || die();
/**
* Raven header library document.
*
* Raven header library document handler class is responsible for
* handling a document of a header type.
*
* @since 1.0.0
*/
class Header extends Library_Document {
/**
* Get document properties.
*
* Retrieve the document properties.
*
* @since 1.0.0
* @access public
* @static
*
* @return array Document properties.
*/
public static function get_properties() {
$properties = parent::get_properties();
$properties['library_view'] = 'list';
$properties['group'] = 'blocks';
return $properties;
}
/**
* Get document name.
*
* Retrieve the document name.
*
* @since 1.0.0
* @access public
*
* @return string Document name.
*/
public function get_name() {
return 'header';
}
/**
* Get document title.
*
* Retrieve the document title.
*
* @since 1.0.0
* @access public
* @static
*
* @return string Document title.
*/
public static function get_title() {
return __( 'Header', 'raven' );
}
/**
* Get document library category.
*
* @since 1.6.0
* @access protected
*
* @return array Document config.
*/
protected function get_remote_library_config() {
$config = parent::get_remote_library_config();
$config['category'] = 'Jupiter X header';
return $config;
}
}