TableCell.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Helper;
  11. use Symfony\Component\Console\Exception\InvalidArgumentException;
  12. /**
  13. * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
  14. */
  15. class TableCell
  16. {
  17. private $value;
  18. private $options = [
  19. 'rowspan' => 1,
  20. 'colspan' => 1,
  21. ];
  22. /**
  23. * @param string $value
  24. */
  25. public function __construct($value = '', array $options = [])
  26. {
  27. if (is_numeric($value) && !\is_string($value)) {
  28. $value = (string) $value;
  29. }
  30. $this->value = $value;
  31. // check option names
  32. if ($diff = array_diff(array_keys($options), array_keys($this->options))) {
  33. throw new InvalidArgumentException(sprintf('The TableCell does not support the following options: \'%s\'.', implode('\', \'', $diff)));
  34. }
  35. $this->options = array_merge($this->options, $options);
  36. }
  37. /**
  38. * Returns the cell value.
  39. *
  40. * @return string
  41. */
  42. public function __toString()
  43. {
  44. return $this->value;
  45. }
  46. /**
  47. * Gets number of colspan.
  48. *
  49. * @return int
  50. */
  51. public function getColspan()
  52. {
  53. return (int) $this->options['colspan'];
  54. }
  55. /**
  56. * Gets number of rowspan.
  57. *
  58. * @return int
  59. */
  60. public function getRowspan()
  61. {
  62. return (int) $this->options['rowspan'];
  63. }
  64. }