Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active January 28, 2016 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/8b4e1e1779baddf8c07c to your computer and use it in GitHub Desktop.
Save kjohnson/8b4e1e1779baddf8c07c to your computer and use it in GitHub Desktop.
<?php
final class NF_Example_Actions_Newsletter extends NF_Abstracts_ActionNewsletter {
// ...
protected function get_lists()
{
return array(
array(
'value' => 1,
'label' => 'One',
'fields' => array(
array(
'value' => 'one',
'label' => __( 'Field One', 'ninja-forms-mail-chimp' )
),
)
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment