1
|
|
|
<?php |
|
|
|
|
2
|
|
|
/** |
3
|
|
|
* @package Pods\Components |
4
|
|
|
* @subpackage Builder |
5
|
|
|
*/ |
6
|
|
|
if ( !class_exists( 'LayoutModule' ) ) |
7
|
|
|
return; |
8
|
|
|
|
9
|
|
|
if ( !class_exists( 'PodsBuilderModuleField' ) ) { |
10
|
|
|
class PodsBuilderModuleField extends LayoutModule { |
11
|
|
|
|
12
|
|
|
var $_name = ''; |
|
|
|
|
13
|
|
|
var $_var = 'pods-builder-field'; |
|
|
|
|
14
|
|
|
var $_description = ''; |
|
|
|
|
15
|
|
|
var $_editor_width = 500; |
|
|
|
|
16
|
|
|
var $_can_remove_wrappers = true; |
|
|
|
|
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Register the Module |
20
|
|
|
*/ |
21
|
|
View Code Duplication |
public function __construct () { |
|
|
|
|
22
|
|
|
$this->_name = __( 'Pods - Field Value', 'pods' ); |
23
|
|
|
$this->_description = __( "Display a single Pod item's field value", 'pods' ); |
24
|
|
|
$this->module_path = dirname( __FILE__ ); |
25
|
|
|
|
26
|
|
|
$this->LayoutModule(); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Set default variables |
31
|
|
|
* |
32
|
|
|
* @param $defaults |
33
|
|
|
* |
34
|
|
|
* @return mixed |
35
|
|
|
*/ |
36
|
|
|
function _get_defaults ( $defaults ) { |
|
|
|
|
37
|
|
|
$new_defaults = array( |
38
|
|
|
'pod_type' => '', |
39
|
|
|
'slug' => '', |
40
|
|
|
'field' => '', |
41
|
|
|
'sidebar' => 'none' |
42
|
|
|
); |
43
|
|
|
|
44
|
|
|
return ITUtility::merge_defaults( $new_defaults, $defaults ); |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* Output something before the table form |
49
|
|
|
* |
50
|
|
|
* @param object $form Form class |
51
|
|
|
* @param bool $results |
52
|
|
|
*/ |
53
|
|
|
function _before_table_edit ( $form, $results = true ) { |
|
|
|
|
54
|
|
|
?> |
55
|
|
|
<p><?php echo $this->_description; ?></p> |
56
|
|
|
<?php |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Output something at the start of the table form |
61
|
|
|
* |
62
|
|
|
* @param object $form Form class |
63
|
|
|
* @param bool $results |
64
|
|
|
*/ |
65
|
|
|
function _start_table_edit ( $form, $results = true ) { |
|
|
|
|
66
|
|
|
$api = pods_api(); |
67
|
|
|
$all_pods = $api->load_pods( array( 'names' => true ) ); |
68
|
|
|
|
69
|
|
|
$pod_types = array(); |
70
|
|
|
|
71
|
|
|
foreach ( $all_pods as $pod_name => $pod_label ) { |
|
|
|
|
72
|
|
|
$pod_types[ $pod_name ] = $pod_label . ' (' . $pod_name . ')'; |
73
|
|
|
} |
74
|
|
|
?> |
75
|
|
|
<tr> |
76
|
|
|
<td valign="top"> |
77
|
|
|
<label for="pod_type"><?php _e( 'Pod', 'pods' ); ?></label> |
78
|
|
|
</td> |
79
|
|
|
<td> |
80
|
|
|
<?php |
81
|
|
View Code Duplication |
if ( 0 < count( $all_pods ) ) |
82
|
|
|
$form->add_drop_down( 'pod_type', $pod_types ); |
83
|
|
|
else |
84
|
|
|
echo '<strong class="red">' . __( 'None Found', 'pods' ) . '</strong>'; |
85
|
|
|
?> |
86
|
|
|
</td> |
87
|
|
|
</tr> |
88
|
|
|
<tr> |
89
|
|
|
<td valign="top"> |
90
|
|
|
<label for="slug"><?php _e( 'Slug or ID', 'pods' ); ?></label> |
91
|
|
|
</td> |
92
|
|
|
<td> |
93
|
|
|
<?php $form->add_text_box( 'slug' ); ?> |
94
|
|
|
</td> |
95
|
|
|
</tr> |
96
|
|
|
<tr> |
97
|
|
|
<td valign="top"> |
98
|
|
|
<label for="field"><?php _e( 'Field', 'pods' ); ?></label> |
99
|
|
|
</td> |
100
|
|
|
<td> |
101
|
|
|
<?php $form->add_text_box( 'field' ); ?> |
102
|
|
|
</td> |
103
|
|
|
</tr> |
104
|
|
|
<?php |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
108
|
|
|
* Module Output |
109
|
|
|
*/ |
110
|
|
|
function _render ( $fields ) { |
|
|
|
|
111
|
|
|
$args = array( |
112
|
|
|
'name' => trim( pods_var_raw( 'pod_type', $fields[ 'data' ], '' ) ), |
113
|
|
|
'slug' => trim( pods_var_raw( 'slug', $fields[ 'data' ], '' ) ), |
114
|
|
|
'field' => trim( pods_var_raw( 'field', $fields[ 'data' ], '' ) ) |
115
|
|
|
); |
116
|
|
|
|
117
|
|
View Code Duplication |
if ( 0 < strlen( $args[ 'name' ] ) && 0 < strlen( $args[ 'slug' ] ) && 0 < strlen( $args[ 'field' ] ) ) |
118
|
|
|
echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) ); |
|
|
|
|
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
} |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
new PodsBuilderModuleField(); |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.