BstoreContainer.php 883 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class PHPExcel_Shared_Escher_DggContainer_BstoreContainer
  8. {
  9. /**
  10. * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture)
  11. *
  12. * @var array
  13. */
  14. private $BSECollection = array();
  15. /**
  16. * Add a BLIP Store Entry
  17. *
  18. * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $BSE
  19. */
  20. public function addBSE($BSE)
  21. {
  22. $this->BSECollection[] = $BSE;
  23. $BSE->setParent($this);
  24. }
  25. /**
  26. * Get the collection of BLIP Store Entries
  27. *
  28. * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE[]
  29. */
  30. public function getBSECollection()
  31. {
  32. return $this->BSECollection;
  33. }
  34. }