core/Container/Term_Meta_Container.php 1 location
|
@@ 71-80 (lines=10) @@
|
68 |
|
* |
69 |
|
* @param int $term_id ID of the term against which save() is ran |
70 |
|
**/ |
71 |
|
public function save( $term_id = null ) { |
72 |
|
$this->set_term_id( $term_id ); |
73 |
|
|
74 |
|
foreach ( $this->fields as $field ) { |
75 |
|
$field->set_value_from_input( stripslashes_deep( $_POST ) ); |
76 |
|
$field->save(); |
77 |
|
} |
78 |
|
|
79 |
|
do_action( 'carbon_after_save_term_meta', $term_id ); |
80 |
|
} |
81 |
|
|
82 |
|
/** |
83 |
|
* Get environment array for page request (in admin) |
core/Container/Nav_Menu_Item_Container.php 1 location
|
@@ 74-81 (lines=8) @@
|
71 |
|
* Perform save operation after successful is_valid_save() check. |
72 |
|
* The call is propagated to all fields in the container. |
73 |
|
**/ |
74 |
|
public function save( $data = null ) { |
75 |
|
foreach ( $this->fields as $field ) { |
76 |
|
$field->set_value_from_input( stripslashes_deep( $_POST ) ); |
77 |
|
$field->save(); |
78 |
|
} |
79 |
|
|
80 |
|
do_action( 'carbon_after_save_nav_menu_item', $this ); |
81 |
|
} |
82 |
|
|
83 |
|
/** |
84 |
|
* Get environment array for page request (in admin) |