|
- ======
- 0
- ======
- /**
- * 删除用户
- * @param string $uids 待删的 ID 数组
- * @param boolean $delpost 是否包含帖子信息
- */
- function deletemember($uids, $delpost = true) {
- ......
- }
- ======
- 1
- ======
- /**
- * 删除帖子
- * @param array $ids 待删的 ID 数组
- * @param string $idtype authorid/tid/pid
- * @param boolean $credit 是否处理积分
- * @param int $posttableid post分表ID
- */
- function deletepost($ids, $idtype = 'pid', $credit = false, $posttableid = false) {
- ......
- }
- ======
- 2
- ======
- /**
- * 删除主题
- * @param array $ids 待删的 ID 数组
- * @param boolean $credit 是否处理积分
- * @param boolean $membercount 是否更新用户帖数统计
- * @param boolean $ponly 是否只处理分表、入回收站时使用
- */
- function deletethread($tids, $membercount = false, $credit = false, $ponly = false) {
- ......
- }
- ======
- 3
- ======
- /**
- * 删除论坛附件
- * @param type $ids 待删的 ID 数组
- * @param type $idtype uid/authorid/tid/pid
- */
- function deleteattach($ids, $idtype = 'aid') {
- ......
- }
- ======
- 4
- ======
- /**
- * 删除评论
- * @param array $cids 待删除的 ID 数组
- */
- function deletecomments($cids) {
- ......
- }
- ======
- 5
- ======
- /**
- * 删除博客
- * @param array $blogids 待删除的 ID 数组
- */
- function deleteblogs($blogids) {
- ......
- }
- ======
- 6
- ======
- /**
- * 删除事件
- * @param array $feedids 待删除的 ID 数组
- */
- function deletefeeds($feedids) {
- ......
- }
- ======
- 7
- ======
- /**
- * 删除分享
- * @param array $sids 待删除的 ID 数组
- */
- function deleteshares($sids) {
- ......
- }
- ======
- 8
- ======
- /**
- * 删除记录
- * @param array $ids 待删除的 ID 数组
- */
- function deletedoings($ids) {
- ......
- }
- ======
- 9
- ======
- /**
- * 删除空间
- * @param array $uid 待删除的用户 ID
- */
- function deletespace($uid) {
- ......
- }
- ======
- 10
- ======
- /**
- * 删除图片
- * @param array $picids 待删除的 ID 数组
- */
- function deletepics($picids) {
- ......
- }
- ======
- 11
- ======
- /**
- * 删除图片文件
- * @param array $pics 待删除的图片数组
- */
- function deletepicfiles($pics) {
- ......
- }
- ======
- 12
- ======
- /**
- * 删除相册
- * @param array $albumids 待删除的 ID 数组
- */
- function deletealbums($albumids) {
- ......
- }
- ======
- 13
- ======
- /**
- * 删除投票
- * @param array $pids 待删除的 ID 数组
- */
- function deletepolls($pids) {
- ......
- }
- ======
- 14
- ======
- /**
- * 删除门户文章
- * @param array $aids 待删除的 ID 数组
- * @param boolean $istrash
- */
- function deletearticle($aids, $istrash = true) {
- ......
- }
- ======
- 15
- ======
- /**
- * 清除生成文章的标识
- */
- function deletearticlepush($pushs) {
- ......
- }
- ======
- 16
- ======
- /**
- * 删除文章相关的数据
- */
- function deletearticlerelated($dels) {
- ......
- }
- ======
- 17
- ======
- /**
- * 跟据id、idtype删除指定的域名
- * @param Integer $ids: 指写ids
- * @param String $idtype:对象类型subarea:分区、forum:版块、home:个人空间、group:群组、topic:专题、channel:频道
- */
- function deletedomain($ids, $idtype) {
- ......
- }
复制代码 |
|