Thanks for a very useful module.

I believe it would be useful to be able to specify, by default, whether generated nodes are to be published, or not, based upon the node type.

As it operates now, the user has to be sure to specify that generated nodes are published, if that is their intent. Less skilled "event creators" may not understand this concept and may overlook making the change.

Comments

francesca79’s picture

subscribing
it would be perfect to ad the published/unpublished action!
Great job

gagarine’s picture

Assigned: Unassigned » gagarine

I want to remove this option at the sequence creation and use the node normal "Workflow settings" of the content type.

robcarr’s picture

I agree that the current implementation is not-user friendly.

Edit:

A quick hack to change the order of the of the options in node_repeat_node_settings_form() (about line 280):

$form['status'] = array(
      '#type' => 'select',
      '#title' => t('Make new nodes published'),
      '#options' => array(
	'1' => 'Published',
        '0' => 'Unpublished',   
      ),
      '#description' => t('Should the newly created nodes be marked as published?'),
    );

Has the first option ('Published') as default

gagarine’s picture

Version: 6.x-1.1 » 6.x-3.x-dev

It should be trivial now.