1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
/** * @param $settings * @param $value * @return string */ function vc_vc_grid_item_form_field( $settings, $value ) { require_once vc_path_dir( 'PARAMS_DIR', 'vc_grid_item/editor/class-vc-grid-item-editor.php' ); require_once vc_path_dir( 'PARAMS_DIR', 'vc_grid_item/class-vc-grid-item.php' ); $output = '<div data-vc-grid-element="container">' . '<select data-vc-grid-element="value" type="hidden" name="' . esc_attr( $settings['param_name'] ) . '" class="wpb_vc_param_value wpb-select ' . esc_attr( $settings['param_name'] ) . ' ' . esc_attr( $settings['type'] ) . '_field" ' . '>'; $vc_grid_item_templates = Vc_Grid_Item::predefinedTemplates(); if ( is_array( $vc_grid_item_templates ) ) { foreach ( $vc_grid_item_templates as $key => $data ) { $output .= '<option data-vc-link="' . esc_url( admin_url( 'post-new.php?post_type=vc_grid_item&vc_gitem_template=' . $key ) ) . '" value="' . esc_attr( $key ) . '"' . ( $key === $value ? ' selected="true"' : '' ) . '>' . esc_html( $data['name'] ) . '</option>'; } }
$grid_item_posts = get_posts( array( 'posts_per_page' => '-1', 'orderby' => 'post_title', 'post_type' => Vc_Grid_Item_Editor::postType(), ) ); foreach ( $grid_item_posts as $post ) { $output .= '<option data-vc-link="' . esc_url( get_edit_post_link( $post->ID ) ) . '"value="' . esc_attr( $post->ID ) . '"' . ( (string) $post->ID === $value ? ' selected="true"' : '' ) . '>' . esc_html( $post->post_title ) . '</option>'; } $output .= '</select></div>';
return $output; }
function vc_load_vc_grid_item_param() { vc_add_shortcode_param( 'vc_grid_item', 'vc_vc_grid_item_form_field' ); }
add_action( 'vc_load_default_params', 'vc_load_vc_grid_item_param' ); /** * @param $target * @return string */ function vc_gitem_post_data_get_link_target_frontend_editor( $target ) { return ' target="_blank"'; }
/** * @param $rel * @return string */ function vc_gitem_post_data_get_link_rel_frontend_editor( $rel ) { return ' rel="' . esc_attr( $rel ) . '"'; }
/** * @param $atts * @param string $default_class * @param string $title * @return string */ function vc_gitem_create_link( $atts, $default_class = '', $title = '' ) { $link = ''; $target = ''; $rel = ''; $title_attr = ''; $css_class = 'vc_gitem-link' . ( strlen( $default_class ) > 0 ? ' ' . $default_class : '' ); if ( isset( $atts['link'] ) ) { if ( 'custom' === $atts['link'] && ! empty( $atts['url'] ) ) { $link = vc_build_link( $atts['url'] ); if ( strlen( $link['target'] ) ) { $target = ' target="' . esc_attr( $link['target'] ) . '"'; } if ( strlen( $link['rel'] ) ) { $rel = ' rel="' . esc_attr( $link['rel'] ) . '"'; } if ( strlen( $link['title'] ) ) { $title = $link['title']; } $link = 'a href="' . esc_url( $link['url'] ) . '" class="' . esc_attr( $css_class ) . '"'; } elseif ( 'post_link' === $atts['link'] ) { $link = 'a href="{{ post_link_url }}" class="' . esc_attr( $css_class ) . '"'; if ( ! strlen( $title ) ) { $title = '{{ post_title }}'; } } elseif ( 'post_author' === $atts['link'] ) { $link = 'a href="{{ post_author_href }}" class="' . esc_attr( $css_class ) . '"'; if ( ! strlen( $title ) ) { $title = '{{ post_author }}'; } } elseif ( 'image' === $atts['link'] ) { $link = 'a{{ post_image_url_href }} class="' . esc_attr( $css_class ) . '"'; } elseif ( 'image_lightbox' === $atts['link'] ) { $link = 'a{{ post_image_url_attr_prettyphoto:' . $css_class . ' }}'; } } if ( strlen( $title ) > 0 ) { $title_attr = ' title="' . esc_attr( $title ) . '"'; }
return apply_filters( 'vc_gitem_post_data_get_link_link', $link, $atts, $css_class ) . apply_filters( 'vc_gitem_post_data_get_link_target', $target, $atts ) . apply_filters( 'vc_gitem_post_data_get_link_rel', $rel, $atts ) . apply_filters( 'vc_gitem_post_data_get_link_title', $title_attr, $atts ); }
/** * @param $atts * @param $post * @param string $default_class * @param string $title * @return string */ function vc_gitem_create_link_real( $atts, $post, $default_class = '', $title = '' ) { $link = ''; $target = ''; $rel = ''; $title_attr = ''; $link_css_class = 'vc_gitem-link'; if ( isset( $atts['link'] ) ) { $link_css_class = 'vc_gitem-link' . ( strlen( $default_class ) > 0 ? ' ' . $default_class : '' ); if ( strlen( $atts['el_class'] ) > 0 ) { $link_css_class .= ' ' . $atts['el_class']; } $link_css_class = trim( preg_replace( '/\s+/', ' ', $link_css_class ) ); if ( 'custom' === $atts['link'] && ! empty( $atts['url'] ) ) { $link = vc_build_link( $atts['url'] ); if ( strlen( $link['target'] ) ) { $target = ' target="' . esc_attr( $link['target'] ) . '"'; } if ( strlen( $link['rel'] ) ) { $rel = ' rel="' . esc_attr( $link['rel'] ) . '"'; } if ( strlen( $link['title'] ) ) { $title = $link['title']; } $link = 'a href="' . esc_url( $link['url'] ) . '" class="' . esc_attr( $link_css_class ) . '"'; } elseif ( 'post_link' === $atts['link'] ) { $link = 'a href="' . esc_url( get_permalink( $post->ID ) ) . '" class="' . esc_attr( $link_css_class ) . '"'; if ( ! strlen( $title ) ) { $title = the_title( '', '', false ); } } elseif ( 'image' === $atts['link'] ) { $href_link = vc_gitem_template_attribute_post_image_url( '', array( 'post' => $post, 'data' => '', ) ); $link = 'a href="' . esc_url( $href_link ) . '" class="' . esc_attr( $link_css_class ) . '"'; } elseif ( 'image_lightbox' === $atts['link'] ) { $link = 'a' . vc_gitem_template_attribute_post_image_url_attr_prettyphoto( '', array( 'post' => $post, 'data' => esc_attr( $link_css_class ), ) ); } } if ( strlen( $title ) > 0 ) { $title_attr = ' title="' . esc_attr( $title ) . '"'; }
return apply_filters( 'vc_gitem_post_data_get_link_real_link', $link, $atts, $post, $link_css_class ) . apply_filters( 'vc_gitem_post_data_get_link_real_target', $target, $atts, $post ) . apply_filters( 'vc_gitem_post_data_get_link_real_rel', $rel, $atts, $post ) . apply_filters( 'vc_gitem_post_data_get_link_real_title', $title_attr, $atts ); }
/** * @param $link * @return string */ function vc_gitem_post_data_get_link_link_frontend_editor( $link ) { return empty( $link ) ? 'a' : $link; }
if ( vc_is_page_editable() ) { add_filter( 'vc_gitem_post_data_get_link_link', 'vc_gitem_post_data_get_link_link_frontend_editor' ); add_filter( 'vc_gitem_post_data_get_link_real_link', 'vc_gitem_post_data_get_link_link_frontend_editor' ); add_filter( 'vc_gitem_post_data_get_link_target', 'vc_gitem_post_data_get_link_target_frontend_editor' ); add_filter( 'vc_gitem_post_data_get_link_rel', 'vc_gitem_post_data_get_link_rel_frontend_editor' ); add_filter( 'vc_gitem_post_data_get_link_real_target', 'vc_gitem_post_data_get_link_target_frontend_editor' ); add_filter( 'vc_gitem_post_data_get_link_real_rel', 'vc_gitem_post_data_get_link_rel_frontend_editor' ); }
|