summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/php/layouts/PanelLayout.php
blob: 64931374b759128bc0c101a81f3606dbfa750e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php

namespace OOUI;

/**
 * Layout that expands to cover the entire area of its parent, with optional scrolling and padding.
 */
class PanelLayout extends Layout {
	/**
	 * @param array $config Configuration options
	 * @param boolean $config['scrollable'] Allow vertical scrolling (default: false)
	 * @param boolean $config['padded'] Pad the content from the edges (default: false)
	 * @param boolean $config['expanded'] Expand size to fill the entire parent element
	 *   (default: true)
	 * @param boolean $config['framed'] Wrap in a frame to visually separate from outside content
	 *   (default: false)
	 */
	public function __construct( array $config = array() ) {
		// Config initialization
		$config = array_merge( array(
			'scrollable' => false,
			'padded' => false,
			'expanded' => true,
			'framed' => false,
		), $config );

		// Parent constructor
		parent::__construct( $config );

		// Initialization
		$this->addClasses( array( 'oo-ui-panelLayout' ) );
		if ( $config['scrollable'] ) {
			$this->addClasses( array( 'oo-ui-panelLayout-scrollable' ) );
		}
		if ( $config['padded'] ) {
			$this->addClasses( array( 'oo-ui-panelLayout-padded' ) );
		}
		if ( $config['expanded'] ) {
			$this->addClasses( array( 'oo-ui-panelLayout-expanded' ) );
		}
		if ( $config['framed'] ) {
			$this->addClasses( array( 'oo-ui-panelLayout-framed' ) );
		}
	}
	public function getConfig( &$config ) {
		if ( $this->hasClass( 'oo-ui-panelLayout-scrollable' ) ) {
			$config['scrollable'] = true;
		}
		if ( $this->hasClass( 'oo-ui-panelLayout-padded' ) ) {
			$config['padded'] = true;
		}
		if ( !$this->hasClass( 'oo-ui-panelLayout-expanded' ) ) {
			$config['expanded'] = false;
		}
		if ( $this->hasClass( 'oo-ui-panelLayout-framed' ) ) {
			$config['framed'] = true;
		}
		$config['content'] = $this->content;
		return parent::getConfig( $config );
	}
}