define.php 349 B

123456789
  1. <?PHP
  2. # 内容的可见性,应用于文集,用户译文等 当有些内容不适合删除时,disable 代替 deleted
  3. define("_CONTENT_VISIBILITY_DELETED_" , -1);
  4. define("_CONTENT_VISIBILITY_DISABLE_" , 0);
  5. define("_CONTENT_VISIBILITY_PRIVATE_" , 10);
  6. define("_CONTENT_VISIBILITY_UNLISTED_" , 20);
  7. define("_CONTENT_VISIBILITY_PUBLIC_" , 30);
  8. ?>