MO::is_entry_good_for_export()

最后更新于:2021-11-25 20:31:39

MO::is_entry_good_for_export( Translation_Entry$entry)

参数

$entry

(Translation_Entry) (Required)

响应

(bool)

源文件

文件: gc-includes/pomo/mo.php

		function is_entry_good_for_export( $entry ) {
			if ( empty( $entry->translations ) ) {
				return false;
			}

			if ( ! array_filter( $entry->translations ) ) {
				return false;
			}

			return true;
		}