ListItem.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. /**
  3. * PHPWord
  4. *
  5. * Copyright (c) 2011 PHPWord
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPWord
  22. * @package PHPWord
  23. * @copyright Copyright (c) 010 PHPWord
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version Beta 0.6.3, 08.07.2011
  26. */
  27. /**
  28. * PHPWord_Section_ListItem
  29. *
  30. * @category PHPWord
  31. * @package PHPWord_Section
  32. * @copyright Copyright (c) 2011 PHPWord
  33. */
  34. class PHPWord_Section_ListItem {
  35. /**
  36. * ListItem Style
  37. *
  38. * @var PHPWord_Style_ListItem
  39. */
  40. private $_style;
  41. /**
  42. * Textrun
  43. *
  44. * @var PHPWord_Section_Text
  45. */
  46. private $_textObject;
  47. /**
  48. * ListItem Depth
  49. *
  50. * @var int
  51. */
  52. private $_depth;
  53. /**
  54. * Create a new ListItem
  55. *
  56. * @param string $text
  57. * @param int $depth
  58. * @param mixed $styleText
  59. * @param mixed $styleList
  60. */
  61. public function __construct($text, $depth = 0, $styleFont = null, $styleList = null, $styleParagraph = null) {
  62. $this->_style = new PHPWord_Style_ListItem();
  63. $this->_textObject = new PHPWord_Section_Text($text, $styleFont, $styleParagraph);
  64. $this->_depth = $depth;
  65. if(!is_null($styleList) && is_array($styleList)) {
  66. foreach($styleList as $key => $value) {
  67. if(substr($key, 0, 1) != '_') {
  68. $key = '_'.$key;
  69. }
  70. $this->_style->setStyleValue($key, $value);
  71. }
  72. }
  73. }
  74. /**
  75. * Get ListItem style
  76. */
  77. public function getStyle() {
  78. return $this->_style;
  79. }
  80. /**
  81. * Get ListItem TextRun
  82. */
  83. public function getTextObject() {
  84. return $this->_textObject;
  85. }
  86. /**
  87. * Get ListItem depth
  88. */
  89. public function getDepth() {
  90. return $this->_depth;
  91. }
  92. }
  93. ?>