| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace common\helpers;
- /**
- * Class TreeHelper
- * @package common\helpers
- * @author qimall
- */
- class TreeHelper
- {
- /**
- * @return string
- */
- public static function prefixTreeKey($id)
- {
- return "tr_$id ";
- }
- /**
- * @return string
- */
- public static function defaultTreeKey()
- {
- return 'tr_0 ';
- }
- }
|