With the conversion to a class it no longer uses $filename but $this->file
[mediawiki.git] / includes / Licenses.php
blob12a1f93823375348f8b039cd77e51b10c1cd0992
1 <?php
2 /**
3 * A License class for use on Special:Upload
5 * @ingroup SpecialPage
7 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
8 * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
9 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
12 class Licenses extends HTMLFormField {
13 /**
14 * @var string
16 protected $msg;
18 /**
19 * @var array
21 protected $licenses = array();
23 /**
24 * @var string
26 protected $html;
27 /**#@-*/
29 /**
30 * Constructor
32 public function __construct( $params ) {
33 parent::__construct( $params );
35 $this->msg = empty( $params['licenses'] ) ? wfMsgForContent( 'licenses' ) : $params['licenses'];
36 $this->selected = null;
38 $this->makeLicenses();
41 /**#@+
42 * @private
44 protected function makeLicenses() {
45 $levels = array();
46 $lines = explode( "\n", $this->msg );
48 foreach ( $lines as $line ) {
49 if ( strpos( $line, '*' ) !== 0 )
50 continue;
51 else {
52 list( $level, $line ) = $this->trimStars( $line );
54 if ( strpos( $line, '|' ) !== false ) {
55 $obj = new License( $line );
56 $this->stackItem( $this->licenses, $levels, $obj );
57 } else {
58 if ( $level < count( $levels ) ) {
59 $levels = array_slice( $levels, 0, $level );
61 if ( $level == count( $levels ) ) {
62 $levels[$level - 1] = $line;
63 } else if ( $level > count( $levels ) ) {
64 $levels[] = $line;
71 protected function trimStars( $str ) {
72 $i = $count = 0;
74 $numStars = strspn( $str, '*' );
75 return array( $numStars, ltrim( substr( $str, $numStars ), ' ' ) );
78 protected function stackItem( &$list, $path, $item ) {
79 $position =& $list;
80 if ( $path )
81 foreach( $path as $key )
82 $position =& $position[$key];
83 $position[] = $item;
86 protected function makeHtml( $tagset, $depth = 0 ) {
87 foreach ( $tagset as $key => $val )
88 if ( is_array( $val ) ) {
89 $this->html .= $this->outputOption(
90 $this->msg( $key ), '',
91 array(
92 'disabled' => 'disabled',
93 'style' => 'color: GrayText', // for MSIE
95 $depth
97 $this->makeHtml( $val, $depth + 1 );
98 } else {
99 $this->html .= $this->outputOption(
100 $this->msg( $val->text ), $val->template,
101 array( 'title' => '{{' . $val->template . '}}' ),
102 $depth
107 protected function outputOption( $text, $value, $attribs = null, $depth = 0 ) {
108 $attribs['value'] = $value;
109 if ( $value === $this->selected )
110 $attribs['selected'] = 'selected';
111 $val = str_repeat( /* &nbsp */ "\xc2\xa0", $depth * 2 ) . $text;
112 return str_repeat( "\t", $depth ) . Xml::element( 'option', $attribs, $val ) . "\n";
115 protected function msg( $str ) {
116 $out = wfMsg( $str );
117 return wfEmptyMsg( $str, $out ) ? $str : $out;
120 /**#@-*/
123 * Accessor for $this->licenses
125 * @return array
127 public function getLicenses() { return $this->licenses; }
130 * Accessor for $this->html
132 * @return string
134 public function getInputHTML( $value ) {
135 $this->selected = $value;
137 $this->html = $this->outputOption( wfMsg( 'nolicense' ), '',
138 (bool)$this->selected ? null : array( 'selected' => 'selected' ) );
139 $this->makeHtml( $this->getLicenses() );
141 $attribs = array(
142 'name' => $this->mName,
143 'id' => $this->mID
145 if ( !empty( $this->mParams['disabled'] ) )
146 $attibs['disabled'] = 'disabled';
148 return Html::rawElement( 'select', $attribs, $this->html );
153 * A License class for use on Special:Upload (represents a single type of license).
155 class License {
157 * @var string
159 var $template;
162 * @var string
164 var $text;
167 * Constructor
169 * @param $str String: license name??
171 function License( $str ) {
172 list( $text, $template ) = explode( '|', strrev( $str ), 2 );
174 $this->template = strrev( $template );
175 $this->text = strrev( $text );