xowiki::utility proc publish_status_next_state (private)

 xowiki::utility[i] publish_status_next_state publish_status

Defined in packages/xowiki/tcl/xowiki-utility-procs.tcl

Determine next publish status and return dict containing CSSclass and next state.

Parameters:
publish_status

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.
Source code:
if {$publish_status eq "ready"} {
  set CSSclass green
  set state "production"
} elseif {$publish_status eq "expired"} {
  set CSSclass black
  set state "production"
} else {
  set CSSclass red
  set state "ready"
}
return [list CSSclass $CSSclass state $state]
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: