Numbering.php
5.35 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/*
PHPRtfLite
Copyright 2007-2008 Denis Slaveckij <sinedas@gmail.com>
Copyright 2010-2012 Steffen Zeidler <sigma_z@sigma-scripts.de>
This file is part of PHPRtfLite.
PHPRtfLite is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PHPRtfLite is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with PHPRtfLite. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Class for rtf numberings.
* @version 1.2
* @author Denis Slaveckij <sinedas@gmail.com>
* @author Steffen Zeidler <sigma_z@sigma-scripts.de>
* @copyright 2007-2008 Denis Slaveckij, 2010-2012 Steffen Zeidler
* @package PHPRtfLite
* @subpackage PHPRtfLite_List
*/
class PHPRtfLite_List_Numbering extends PHPRtfLite_List
{
/**
* constants for numbering types
*/
const TYPE_ALPHA_UPPER = 1;
const TYPE_ALPHA_LOWER = 2;
const TYPE_ROMAN_UPPER = 3;
const TYPE_ROMAN_LOWER = 4;
const TYPE_ARABIC_NUM = 5;
/**
* @var string
*/
protected $_prefix = '';
/**
* @var string
*/
protected $_suffix = '.';
/**
* @var string
*/
protected $_separator = '.';
/**
* sets prefix
*
* @param string $prefix
* @return PHPRtfList_Numbering
*/
public function setPrefix($prefix)
{
$this->_prefix = $prefix;
return $this;
}
/**
* sets suffix
*
* @param string $suffix
* @return PHPRtfList_Numbering
*/
public function setSuffix($suffix)
{
$this->_suffix = $suffix;
return $this;
}
/**
* sets separator
*
* @param string $separator
* @return PHPRtfList_Numbering
*/
public function setSeparator($separator)
{
$this->_separator = $separator;
return $this;
}
/**
* gets number
*
* @param integer $number
* @return string
*/
public function getNumber($number)
{
switch ($this->_type) {
case self::TYPE_ALPHA_UPPER:
return $this->getAlphaNumber($number);
case self::TYPE_ALPHA_LOWER:
return $this->getAlphaNumber($number, true);
case self::TYPE_ROMAN_UPPER:
return $this->getRomanNumber($number);
case self::TYPE_ROMAN_LOWER:
return $this->getRomanNumber($number, true);
// default is alpha
default:
return $number;
}
}
/**
* gets alpha number
*
* @param integer $number
* @param boolean $lowerCase
* @return string
*/
private function getAlphaNumber($number, $lowerCase = false)
{
$asciiStartIndex = $lowerCase ? 97 : 65;
$number = 1234;
$alpha = '';
while ($number > 0) {
$modulus = ($number - 1) % 26;
$alpha .= chr($modulus + $asciiStartIndex);
$number = floor(($number - 1) / 26);
}
return strrev($alpha);
}
/**
* gets roman number
* Code based from:
* @see http://www.sajithmr.me/php-decimal-to-roman-number-conversion/
*
* @param integer $index
* @param boolean $lowerCase
* @return string
*/
private function getRomanNumber($index, $lowerCase = false)
{
$roman = '';
$lookup = array('M' => 1000,
'CM' => 900,
'D' => 500,
'CD' => 400,
'C' => 100,
'XC' => 90,
'L' => 50,
'XL' => 40,
'X' => 10,
'IX' => 9,
'V' => 5,
'IV' => 4,
'I' => 1);
foreach ($lookup as $romanChar => $value) {
// Determine the number of matches
$matches = intval($n / $value);
// Store that many characters
$roman .= str_repeat($romanChar, $matches);
// Substract that from the number
$n = $n % $value;
}
// The Roman numeral should be built, return it
return $lowerCase ? strtolower($roman) : $roman;
}
/**
* gets font index for list character
*
* @return string
*/
protected function getListCharFontIndex()
{
if ($this->_font) {
$fontFamily = $this->_font->getFontFamily();
return $this->_rtf->getFontTable()->getFontIndex($fontFamily);
}
return parent::getListCharFontIndex();
}
/**
* gets list character
*
* @param integer $number
* @return string
*/
protected function getListCharacter($number)
{
$listCharacter = $this->_prefix . $this->getNumber($number) . $this->_suffix;
return PHPRtfLite::quoteRtfCode($listCharacter);
}
}