BP_Document_Folder::save()
Save the document folder to the database.
Description
Return
(WP_Error|bool) True on success.
Source
File: bp-document/classes/class-bp-document-folder.php
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | public function save() { global $wpdb ; $bp = buddypress(); $this ->id = apply_filters_ref_array( 'bp_document_id_before_save' , array ( $this ->id, & $this ) ); $this ->user_id = apply_filters_ref_array( 'bp_document_user_id_before_save' , array ( $this ->user_id, & $this , ) ); $this ->blog_id = apply_filters_ref_array( 'bp_document_blog_id_before_save' , array ( $this ->blog_id, & $this , ) ); $this ->group_id = apply_filters_ref_array( 'bp_document_group_id_before_save' , array ( $this ->group_id, & $this , ) ); $this ->title = apply_filters_ref_array( 'bp_document_title_before_save' , array ( $this ->title, & $this , ) ); $this ->privacy = apply_filters_ref_array( 'bp_document_privacy_before_save' , array ( $this ->privacy, & $this , ) ); $this ->date_created = apply_filters_ref_array( 'bp_document_date_created_before_save' , array ( $this ->date_created, & $this , ) ); $this ->date_modified = apply_filters_ref_array( 'bp_document_date_modified_before_save' , array ( $this ->date_modified, & $this , ) ); $this ->parent = apply_filters_ref_array( 'bp_document_parent_before_save' , array ( $this ->parent, & $this , ) ); /** * Fires before the current folder gets saved. * Please use this hook to filter the properties above. Each part will be passed in. * * @param BP_Document $this Current instance of the folder being saved. Passed by reference. * * @since BuddyBoss 1.4.0 */ do_action_ref_array( 'bp_document_folder_before_save' , array ( & $this ) ); if ( 'wp_error' === $this ->error_type && $this ->errors->get_error_code() ) { return $this ->errors; } // If we have an existing ID, update the folder, otherwise insert it. if ( ! empty ( $this ->id ) ) { $q = $wpdb ->prepare( "UPDATE {$bp->document->table_name_folder} SET blog_id = %d, user_id = %d, group_id = %d, title = %s, privacy = %s, parent = %d, date_modified = %s WHERE id = %d" , $this ->blog_id, $this ->user_id, $this ->group_id, $this ->title, $this ->privacy, $this ->parent, $this ->date_modified, $this ->id ); } else { $q = $wpdb ->prepare( "INSERT INTO {$bp->document->table_name_folder} ( blog_id, user_id, group_id, title, privacy, date_created, date_modified, parent ) VALUES ( %d, %d, %d, %s, %s, %s, %s, %d )" , $this ->blog_id, $this ->user_id, $this ->group_id, $this ->title, $this ->privacy, $this ->date_created, $this ->date_modified, $this ->parent ); } $q = $wpdb ->query( $q ); // db call ok; no-cache ok; if ( false === $q ) { return false; } // If this is a new folder, set the $id property. if ( empty ( $this ->id ) ) { $this ->id = $wpdb ->insert_id; } /** * Fires after an folder has been saved to the database. * * @param BP_Document $this Current instance of folder being saved. Passed by reference. * * @since BuddyBoss 1.4.0 */ do_action_ref_array( 'bp_document_folder_after_save' , array ( & $this ) ); return true; } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.4.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.