You are here

public function StateFlow::set_published in State Machine 6

Same name and namespace in other branches
  1. 7 modules/state_flow/plugins/state_flow.inc \StateFlow::set_published()
  2. 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

StateFlow

Code

public function set_published() {
  $this->object->status = 1;
  drupal_write_record('node', $this->object, 'nid');
}