| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * The text element class file of zin of ZenTaoPMS.
- *
- * @copyright Copyright 2023 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
- * @author Hao Sun <sunhao@easycorp.ltd>
- * @package zin
- * @version $Id
- * @link https://www.zentao.net
- */
- namespace zin;
- require_once __DIR__ . DS . 'node.class.php';
- require_once __DIR__ . DS . 'directive.class.php';
- class text extends node
- {
- }
- /**
- * @param mixed ...$texts
- */
- function text(...$texts)
- {
- return new text(...$texts);
- }
|