-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpp.php
205 lines (171 loc) · 6.67 KB
/
cpp.php
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
// Initialize custom post types
add_action('init', 'exibio_alch_cpt');
function exibio_alch_cpt() {
// Set tamogatoi post type
$labels_tamogatoi = array(
'name' => _x( 'Támogatói blokk', 'tamogatoik', 'atlatszo' ),
'singular_name' => _x( 'Támogatói', 'tamogatoi', 'atlatszo' ),
'menu_name' => _x( 'Támogatói blokkok', 'admin menu', 'atlatszo' ),
'name_admin_bar' => _x( 'Támogatói', 'add new on admin bar', 'atlatszo' ),
'add_new' => _x( 'Új támogatói blokk', 'tamogatoi', 'atlatszo' ),
'add_new_item' => __( 'Új támogatói blokk hozzáadása', 'atlatszo' ),
'new_item' => __( 'ÚJ támogatói blokk', 'atlatszo' ),
'edit_item' => __( 'Támogatói blokk szerkesztése', 'atlatszo' ),
'view_item' => __( 'Támogatói blokk megtekintése', 'atlatszo' ),
'all_items' => __( 'Összes támogatói blokk', 'atlatszo' ),
'search_items' => __( 'Támogatói blokk keresése', 'atlatszo' ),
'parent_item_colon' => __( 'Támogatói blokk szülő', 'atlatszo' ),
'not_found' => __( 'Támogatói blokk nem található.', 'atlatszo' ),
'not_found_in_trash' => __( 'Támogatói nem található a lomtárban.', 'atlatszo' )
);
$args_tamogatoi = array(
'labels' => $labels_tamogatoi,
'description' => __( 'Description.', 'atlatszo'),
'public' => false,
'publicly_queryable' => false,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'tamogatoi' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title', 'editor', 'thumbnail', 'excerpt', 'custom-fields'),
'menu_icon' => 'dashicons-layout',
);
register_post_type( 'tamogatoi', $args_tamogatoi );
$labels_tamogatoi = array(
'name' => 'Támogatói kategória',
'singular_name' => 'Támogatói kategória',
'menu_name' => 'Támogatói kategóriák',
'name_admin_bar' => 'Támogatói kategóriák',
'add_new' => 'Új hozzáadása',
'add_new_item' => 'Új támogatói kategória hozzáadása',
'new_item' => 'Új támogatói kategória',
'edit_item' => 'Támogatói kategória szerkesztése',
'view_item' => 'Támogatói kategória megtekintése',
'all_items' => 'Összes támogatói kategória',
'not_found' => 'Támogatói kategória nem található'
);
register_taxonomy(
'tamogatoi-kategoria',
'tamogatoi',
array(
'label' => __('Type'),
'rewrite' => array( 'slug' => 'tamogatoi-kategoria' ),
'hierarchical' => true,
'labels' => $labels_tamogatoi,
)
);
/*
$labels_dosszie = array(
'name' => 'Dosszié',
'singular_name' => 'Dosszié',
'menu_name' => 'Dossziék',
'name_admin_bar' => 'Dossziék',
'add_new' => 'Új hozzáadása',
'add_new_item' => 'Új dosszié hozzáadása',
'new_item' => 'Új dosszié',
'edit_item' => 'Dosszié szerkesztése',
'view_item' => 'Dosszié megtekintése',
'all_items' => 'Összes dosszié',
'not_found' => 'Dosszié nem található'
);
register_taxonomy(
'dosszie',
'post',
array(
'label' => __('Type'),
'rewrite' => array( 'slug' => 'dossziek' ),
'hierarchical' => true,
'labels' => $labels_dosszie,
)
);
*/
/*
$labels_tamogatoi_tag = array(
'name' => 'Támogatói tags',
'singular_name' => 'Támogatói tag',
'menu_name' => 'Támogatói tags',
'name_admin_bar' => 'Támogatói tags',
'add_new' => 'Add New hozzáadása',
'add_new_item' => 'Add New tamogatoi tag',
'new_item' => 'Add New tamogatoi tag',
'edit_item' => 'Edit Támogatói tag',
'view_item' => 'View Támogatói tag',
'all_items' => 'All tamogatoi tags',
'not_found' => 'Támogatói tag not found'
);
register_taxonomy(
'tamogatoi-tag',
'tamogatoi',
array(
'label' => __('Type'),
'rewrite' => array( 'slug' => 'tamogatoi-tag' ),
'hierarchical' => false,
'labels' => $labels_tamogatoi_tag,
)
);*/
}
add_filter( 'manage_edit-tamogatoi_columns', 'my_edit_tamogatoi' ) ;
function my_edit_tamogatoi( $columns ) {
$columns = array(
'cb' => '<input type="checkbox" />',
'title' => __( 'Title' ),
'type' => __('Type'),
'date' => __('Date'),
'reference_name' => __('Hivatkozási név', 'atlatszo'),
'opacity' => __('Kép átlátszóság'),
'image' => __('Image')
);
return $columns;
}
add_action( 'manage_tamogatoi_posts_custom_column', 'my_manage_tamogatoi_columns', 10, 2 );
function my_manage_tamogatoi_columns ($column, $post_id) {
global $post;
switch($column) {
case 'type' :
$terms = get_the_terms( $post_id, 'tamogatoi-kategoria' );
if ( !empty( $terms ) ) {
$out = array();
foreach ( $terms as $term ) {
$out[] = sprintf( '<a href="%s">%s</a>',
esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'tamogatoi-kategoria' => $term->slug ), 'edit.php' ) ),
esc_html( sanitize_term_field( 'name', $term->name, $term->term_id, 'tamogatoi-kategoria', 'display' ) )
);
}
echo join( ', ', $out );
}
else {
_e( 'None' );
}
break;
case 'reference_name' :
echo get_post_meta($post_id, 'blokk_hivatkozasi_nev', true);
break;
case 'opacity' :
$opacity=get_post_meta($post_id, 'kep_atlatszosag', true);
if ($opacity) {
$opacity=floatval($opacity*100);
echo $opacity."%";
} else {
echo "-";
}
break;
case 'image' :
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
$thumb_image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail' );
if ( ! empty( $large_image_url[0] ) ) {
add_thickbox();
echo '<a class="thickbox" href="' . esc_url( $large_image_url[0] ) . '" title="' . the_title_attribute( array( 'echo' => 0 ) ) . '">';?>
<img style="width:100px;height:100px;" src="<?php echo esc_url( $thumb_image_url[0] );?>"/>
</a>
<?php }
break;
default :
break;
}
}
?>