-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathfor_php_examples.php
42 lines (35 loc) · 1.63 KB
/
for_php_examples.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
# получить ресурс по id
$document = $modx->getObject('modResource', $id);
# получить первый ресурс из выборки по условию
$document = $modx->getObject('modResource',array(
'published' => 1,
'pagetitle' => 'Телефоны'
));
/* get the extended field named "color": */
$fields = $profile->get('extended');
$color = $fields['color'];
/* set the color field to red */
$profile->set('extended',$fields);
$profile->save();
# Начало работы с кастомным пакетом, например созданным в MIGX
$modx->addPackage('customPackage',MODX_BASE_PATH.'core/components/customPackage/model/','modx_');
# Создание запроса и поиск по TV
$c = $modx->newQuery('modResource');
$c->innerJoin('modTemplateVarResource','TemplateVarResources');
$c->innerJoin('modTemplateVar','TemplateVar','`TemplateVar`.`id` = `TemplateVarResources`.`tmplvarid`');
$c->where(array(
'TemplateVar.name:IN' => array('beginDate','endDate'),
'TemplateVarResources.value:>=' => $firstDate,
'TemplateVarResources.value:<=' => $lastDate,
'modResource.template' => 4
));
$c->sortby('id','DESC');
$lastresource = $modx->getObject('modResource', $c);
# Создание ресурса
$resource = $modx->newObject('modResource');
$resource->fromArray(array('pagetitle'=>'Заголовок ресурса', 'publishedon'=> date("Y-m-d H:i:s")));
$resource->save();
return $resource->get('id');
# Взять контент из локального json
$json = file_get_contents(MODX_BASE_PATH . 'dev/file.json');
$result = $modx->fromJSON($result);