示例#1
0
 function publishToggle($publish)
 {
     // Check that one or more items have been selected (Javascript may not have run)
     $this->admin->check_selection(_DOWN_PUB_PROMPT . ($publish ? 'publish' : 'unpublish'));
     mosContainer::togglePublished($this->admin->cfid, $publish);
     // The file/folder counts only include published items, so recalculate
     $this->repository->resetCounts(array());
     // List out the containers again
     $this->listTask();
 }