text.class.php 577 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The text element class file of zin of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2023 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @author Hao Sun <sunhao@easycorp.ltd>
  7. * @package zin
  8. * @version $Id
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. require_once __DIR__ . DS . 'node.class.php';
  13. require_once __DIR__ . DS . 'directive.class.php';
  14. class text extends node
  15. {
  16. }
  17. /**
  18. * @param mixed ...$texts
  19. */
  20. function text(...$texts)
  21. {
  22. return new text(...$texts);
  23. }