' => array( 'placeholder' => __( 'Field Name', 'us' ), 'description' => __( 'Enter a custom field name to get its value.', 'us' ), 'type' => 'text', 'std' => '', 'show_if' => array( 'cf_name_predefined', '=', 'custom' ), ), 'tax' => array( 'type' => 'select', 'options' => us_get_taxonomies(), 'std' => 'category', 'show_if' => array( 'param', '=', 'tax_term' ), ), 'mode' => array( 'type' => 'radio', 'options' => array( '=' => __( 'Includes', 'us' ), '!=' => __( 'Excludes', 'us' ), ), 'std' => '=', 'show_if' => array( 'param', '=', array( 'page_url', 'post_type', 'post_id', 'tax_term', 'user_role' ) ), ), 'cf_mode' => array( 'type' => 'select', 'options' => array( '=' => __( 'Equal', 'us' ), '!=' => __( 'Not equal', 'us' ), '>' => __( 'Greater than', 'us' ), '<' => __( 'Less than', 'us' ), ), 'std' => '=', 'show_if' => array( 'param', '=', 'custom_field' ), ), 'page_url' => array( 'placeholder' => us_translate( 'Value' ), 'type' => 'text', 'std' => '', 'show_if' => array( 'param', '=', 'page_url' ), ), 'cf_value' => array( 'placeholder' => us_translate( 'Value' ), 'type' => 'text', 'std' => '', 'show_if' => array( 'param', '=', 'custom_field' ), ), 'post_value' => array( 'placeholder' => __( 'Post ID', 'us' ), 'description' => __( 'For several values use commas', 'us' ), 'type' => 'text', 'std' => '', 'show_if' => array( 'param', '=', 'post_id' ), ), 'term_value' => array( 'placeholder' => us_translate( 'Value' ), 'description' => __( 'Use ID or slug.', 'us' ) . ' ' . __( 'For several values use commas', 'us' ), 'type' => 'text', 'std' => '', 'show_if' => array( 'param', '=', 'tax_term' ), ), 'time_operator' => array( 'description' => sprintf( us_translate( 'Local time is %s.' ), '' . wp_date( 'M d Y H:i' ) . '' ), 'type' => 'select', 'options' => array( 'since' => _x( 'Since', 'specified date', 'us' ), 'until' => _x( 'Until', 'specified date', 'us' ), 'w' => __( 'Day of the week', 'us' ), 'd' => __( 'Day of the month', 'us' ), 'dm' => __( 'Day of the year', 'us' ), 'm' => us_translate( 'Month' ), ), 'std' => 'since', 'show_if' => array( 'param', '=', 'time' ), ), 'time_weekday' => array( 'type' => 'select', 'options' => $_weekdays, 'std' => '0', 'cols' => 3, 'show_if' => array( 'time_operator', '=', 'w' ), ), 'time_month' => array( 'type' => 'select', 'options' => $_months, 'std' => current_time( 'm' ), 'cols' => 4, 'show_if' => array( 'time_operator', '=', array( 'since', 'until', 'dm', 'm' ) ), ), 'time_day' => array( 'type' => 'select', 'options' => $_days, 'std' => current_time( 'd' ), 'cols' => 6, 'show_if' => array( 'time_operator', '=', array( 'since', 'until', 'd', 'dm' ) ), ), 'time_year' => array( 'type' => 'select', 'options' => $_years, 'std' => current_time( 'Y' ), 'cols' => 4, 'show_if' => array( 'time_operator', '=', array( 'since', 'until' ) ), ), 'time_hour' => array( 'type' => 'select', 'options' => $_hours, 'std' => '00', 'cols' => 6, 'show_if' => array( 'time_operator', '=', array( 'since', 'until' ) ), ), 'time_minute' => array( 'type' => 'select', 'options' => $_minutes, 'std' => '00', 'cols' => 6, 'show_if' => array( 'time_operator', '=', array( 'since', 'until' ) ), ), 'post_type' => array( 'type' => 'select', 'options' => us_grid_available_post_types( TRUE ), 'std' => 'post', 'show_if' => array( 'param', '=', 'post_type' ), ), 'user_state' => array( 'type' => 'radio', 'options' => array( 'logged_in' => __( 'Logged in', 'us' ), 'logged_out' => __( 'Logged out', 'us' ), ), 'std' => 'logged_in', 'show_if' => array( 'param', '=', 'user_state' ), ), 'user_role' => array( 'type' => 'select', 'options' => $user_roles, 'std' => 'administrator', 'show_if' => array( 'param', '=', 'user_role' ), ), ); if ( class_exists( 'woocommerce' ) ) { $conditions_params = array_merge( $conditions_params, array( 'cart_status' => array( 'type' => 'radio', 'options' => array( 'empty' => _x( 'Empty', 'Cart State', 'us' ), 'not_empty' => _x( 'Not Empty', 'Cart State', 'us' ), ), 'std' => 'empty', 'show_if' => array( 'param', '=', 'cart_status' ), ), 'cart_total_mode' => array( 'type' => 'radio', 'options' => array( '>' => __( 'Greater than', 'us' ), '<' => __( 'Less than', 'us' ), ), 'std' => '>', 'show_if' => array( 'param', '=', 'cart_total' ), ), 'cart_total' => array( 'type' => 'text', 'std' => '100', 'show_if' => array( 'param', '=', 'cart_total' ), ), 'wc_account_endpoint' => array( 'type' => 'select', 'options' => $wc_account_endpoints, 'std' => 'dashboard', 'show_if' => array( 'param', '=', 'wc_account_endpoint' ), ), ) ); } return array( 'conditions_operator' => array( 'title' => __( 'Display this Element', 'us' ), 'type' => 'select', 'options' => array( 'always' => __( 'Always', 'us' ), 'and' => __( 'If EVERY condition below is met', 'us' ), 'or' => __( 'If ANY condition below is met', 'us' ), ), 'std' => 'always', 'group' => __( 'Display Logic', 'us' ), ), 'conditions' => array( 'type' => 'group', 'group' => __( 'Display Logic', 'us' ), 'show_controls' => TRUE, 'is_sortable' => FALSE, 'is_accordion' => TRUE, 'accordion_title' => 'param', 'std' => array(), 'show_if' => array( 'conditions_operator', '!=', 'always' ), 'params' => $conditions_params, ), );

استفاده از خانه گنبدی در مناطق سردسیر

شکل گنبدی، وجود عایق پشم سنگ، عایق رطوبتی و استفاده از شیشه دوجداره از اتلاف انرژی در این سازه جلوگیری کرده و آن را برای استفاده در مناطق سردسیر مناسب می کند.
همچنین سازه های پیش ساخته گنبدی ایگلو ویلا در ابعاد بزرگ به عنوان سپری خارجی سازه های زیرین، می تواند آن را در برابر قرار گرفتن مستقیم در برابر سرمای شدید محافظت کرده و فضای گرم تری را برای محیط زیرین فراهم کند و به طبع آن مصرف انرژی را به حداقل برساند.

سایر پروژه ها

ایگلو ویلا

خانه گنبدی کمک به پدیده گرمایش زمین

پروژه ها
خانه گنبدی کمک به پدیده گرمایش زمین