edit.zentaobiz.html.hook.php 350 B

12345678910111213
  1. <?php
  2. namespace zin;
  3. global $lang;
  4. $story = data('story');
  5. $canEditContent = strpos(',draft,changing,', ",{$story->status},") !== false;
  6. $docField = array();
  7. $docField[] = section
  8. (
  9. set::title($lang->story->docs),
  10. doclist(set::data($story), set::mode($canEditContent ? 'edit' : 'view'))
  11. );
  12. query('#files')->before($docField);