public function StateFlow::set_published in State Machine 6
Same name and namespace in other branches
- 7 modules/state_flow/plugins/state_flow.inc \StateFlow::set_published()
- 7.2 modules/state_flow/plugins/state_flow.inc \StateFlow::set_published()
1 call to StateFlow::set_published()
- StateFlow::on_enter_published in modules/
state_flow/ plugins/ state_flow.inc
File
- modules/
state_flow/ plugins/ state_flow.inc, line 67
Class
Code
public function set_published() {
$this->object->status = 1;
drupal_write_record('node', $this->object, 'nid');
}