本文整理汇总了PHP中modMediaSource::getContainerList方法的典型用法代码示例。如果您正苦于以下问题:PHP modMediaSource::getContainerList方法的具体用法?PHP modMediaSource::getContainerList怎么用?PHP modMediaSource::getContainerList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类modMediaSource
的用法示例。
在下文中一共展示了modMediaSource::getContainerList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: process
public function process()
{
if (!$this->getSource()) {
return $this->modx->toJSON(array());
}
if (!$this->source->checkPolicy('list')) {
return $this->modx->toJSON(array());
}
$this->source->setRequestProperties($this->getProperties());
$this->source->initialize();
$list = $this->source->getContainerList($this->getProperty('dir'));
return $this->modx->toJSON($list);
}
示例2: process
public function process()
{
$tv = $_POST['tv_id'];
$resId = $_POST['resource_id'];
$page = $this->modx->getObject('modResource', $resId);
$tvvalue = $page->getTVValue($tv);
$nowTVarray = json_decode($tvvalue, true);
if (!$this->getSource()) {
return $this->modx->toJSON(array());
}
if (!$this->source->checkPolicy('list')) {
return $this->modx->toJSON(array());
}
$this->source->setRequestProperties($this->getProperties());
$this->source->initialize();
$list = $this->source->getContainerList($this->getProperty('dir'));
foreach ($list as $file) {
if ('.' != $file && '..' != $file && '.DS_Store' != $file && '.htaccess' != $file && is_dir($storeFolder . $file) != true) {
//If there is no file in TV, it was uploaded another way. Let it be in the end of the list.
$obj['index'] = '9999';
foreach ($nowTVarray as $key => $value) {
if ($key == $file['text']) {
$obj['index'] = $value['index'];
}
}
//Define picture size
$path_info = pathinfo($file['url']);
$extension = strtolower($path_info['extension']);
if ($extension == 'jpg' || $extension == 'png' || $extension == 'gif' || $extension == 'jpeg') {
list($width, $height, $type, $attr) = getimagesize($file['path']);
$obj['width'] = $width;
$obj['height'] = $height;
}
$obj['name'] = $file['text'];
$obj['url'] = $file['url'];
$obj['obj'] = $file;
$obj['ext'] = $path_info['extension'];
$obj['size'] = filesize($file['path']);
$result[] = $obj;
}
}
foreach ($result as $key => $row) {
$index[$key] = $row['index'];
$name[$key] = $row['name'];
}
array_multisort($index, SORT_ASC, $name, SORT_ASC, $result);
return $this->modx->toJSON($result);
}