Advertisement
Guest User

Untitled

a guest
Mar 6th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. public function updateStatusFlags(&$flags) {
  2.  
  3.     if (isset($flags['addedtodraft'])) {
  4.         $flags['status_draft'] = '';
  5.     } elseif ($this->stagesDiffer('Stage', 'Live') /*isset($flags['modified'])*/) {
  6.         $flags['status_draft_published'] = '';
  7.     } else {
  8.         $flags['status_published'] = '';
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement