drupal Execute custom PHP code

林华皓
2023-12-01
今天开发的一个小模块需要用到conditions,怎么使用Execute custom PHP code,在群里问半天没人理,搜半天也没找到资料,所以决定放弃使用conditions,直接在文件里面写条件,写好后,突发奇想把这段代码放到conditions试试的心态,没想到成功了。终于弄明白是conditions怎么回事了,就把它当成一个返回值的函数,true的话,就是能执行。下面的例子就是我想判断user的一个值:
global $user;
$user=user_load($user->uid);
$taxonomy = taxonomy_term_load($user->field_terms_code['und'][0]['tid']);
if($taxonomy ->name== 'CC') return true;
希望能帮到你!
 类似资料:

相关阅读

相关文章

相关问答