parse_current_sections( $current_sections_array )


Description Description


Source Source

File: includes/class.llms.ajax.php

		function parse_current_sections( $current_sections_array ) {
		    $array = array();

		    foreach ( $current_sections_array[0] as $key => $value ) {
		    	foreach ( $value as $keys => $values ) {
		    		if ( 'section_id' == $keys ) {
						array_push( $array, $values );
		    		}
		    	}
		    }
		    return $array;
		}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.





Permalink: