config( 'NewFormTemplates' ); usort( $templates, array( $this, 'cmp' ) ); array_unshift( $templates, array( 'id' => 'new', 'title' => __( 'Blank Form', 'ninja-forms' ), 'template-desc' => __( 'The blank form allows you to create any type of form using our drag & drop builder.', 'ninja-forms' ), 'type' => 'default' ) ); return array_values( $templates ); // Remove keys so that the JSON is an array. } /** * Comparison function used to sort templates alphabetically by title * @since 3.2.22 * @param array $a item being compared * @param array $b item being compared * @return int */ private function cmp( $a, $b ) { return strcmp( $a[ 'title' ], $b[ 'title' ] ); } }