ListItem.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_Style_ListItem
  29. *
  30. * @category PHPWord
  31. * @package PHPWord_Style
  32. * @copyright Copyright (c) 2011 PHPWord
  33. */
  34. class PHPWord_Style_ListItem {
  35. const TYPE_NUMBER = 7;
  36. const TYPE_NUMBER_NESTED = 8;
  37. const TYPE_BULLET_FILLED = 3;
  38. const TYPE_BULLET_EMPTY = 5;
  39. const TYPE_SQUARE_FILLED = 1;
  40. /**
  41. * List Type
  42. */
  43. private $_listType;
  44. /**
  45. * Create a new ListItem Style
  46. */
  47. public function __construct() {
  48. $this->_listType = PHPWord_Style_ListItem::TYPE_BULLET_FILLED;
  49. }
  50. /**
  51. * Set style value
  52. *
  53. * @param string $key
  54. * @param string $value
  55. */
  56. public function setStyleValue($key, $value) {
  57. $this->$key = $value;
  58. }
  59. /**
  60. * Set List Type
  61. *
  62. * @param int $pValue
  63. */
  64. public function setListType($pValue = PHPWord_Style_ListItem::TYPE_BULLET_FILLED) {
  65. $this->_listType = $pValue;
  66. }
  67. /**
  68. * Get List Type
  69. */
  70. public function getListType() {
  71. return $this->_listType;
  72. }
  73. }
  74. ?>