Noptin_Automation_Rules_Table::single_row( object $item )
Generates content for a single row of the table
Parameters Parameters
- $item
(object) (Required) The current item.
Source Source
File: includes/automation-rules/class-noptin-automation-rules-table.php
public function single_row( $item ) { $item = new Noptin_Automation_Rule( $item ); $id = esc_attr( $item->id ); echo "<tr class='noptin_automation_rule_$id'>"; $this->single_row_columns( $item ); echo '</tr>'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.2.8 | Introduced. |