1 | <?php |
||
10 | final class Drupal7Placeholder extends DrupalKernelPlaceholder |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public static function beforeFeature(BeforeFeatureScope $scope) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public static function t($string, array $arguments = [], array $options = []) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public static function formatString($string, array $arguments = []) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public static function arg() |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public static function tokenReplace($text, array $data = [], array $options = []) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public static function jsonEncode($data) |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | * |
||
65 | * @return \stdClass |
||
66 | */ |
||
67 | public static function getCurrentUser() |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | * |
||
75 | * @param \stdClass $user |
||
76 | */ |
||
77 | public static function setCurrentUser($user) |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public static function setCurrentPath($path) |
||
89 | |||
90 | /** |
||
91 | * {@inheritdoc} |
||
92 | */ |
||
93 | public static function getUidByName($username) |
||
99 | |||
100 | /** |
||
101 | * {@inheritdoc} |
||
102 | */ |
||
103 | public static function deleteUser($user_id) |
||
107 | |||
108 | /** |
||
109 | * {@inheritdoc} |
||
110 | * |
||
111 | * @return \SelectQuery |
||
112 | */ |
||
113 | public static function selectQuery($table, $alias = null, array $options = []) |
||
117 | |||
118 | /** |
||
119 | * {@inheritdoc} |
||
120 | */ |
||
121 | public static function getFieldDefinitions($entityType, $bundle) |
||
141 | |||
142 | /** |
||
143 | * {@inheritdoc} |
||
144 | */ |
||
145 | public static function getDatabaseConnectionInfo($connection) |
||
149 | |||
150 | /** |
||
151 | * {@inheritdoc} |
||
152 | */ |
||
153 | public static function entityCreate($entityType, array $values) |
||
162 | |||
163 | /** |
||
164 | * {@inheritdoc} |
||
165 | */ |
||
166 | public static function entityLoad($entityType, $id) |
||
172 | |||
173 | /** |
||
174 | * {@inheritdoc} |
||
175 | */ |
||
176 | public static function entityHasField($entity, $fieldName) |
||
180 | |||
181 | /** |
||
182 | * {@inheritdoc} |
||
183 | * |
||
184 | * @param \EntityDrupalWrapper $entity |
||
185 | */ |
||
186 | public static function entityFieldValue($entity, $fieldName) |
||
198 | |||
199 | /** |
||
200 | * {@inheritdoc} |
||
201 | */ |
||
202 | public static function switchMailSystem($useTesting) |
||
226 | |||
227 | /** |
||
228 | * {@inheritdoc} |
||
229 | */ |
||
230 | public static function getEmailMessages() |
||
240 | |||
241 | /** |
||
242 | * {@inheritdoc} |
||
243 | */ |
||
244 | public static function getContentTypeName($contentType) |
||
254 | } |
||
255 |