richdocuments/lib/storage.php

60 lines
1.5 KiB
PHP
Raw Normal View History

2013-06-30 20:53:42 +02:00
<?php
/**
2013-08-28 12:02:27 +02:00
* ownCloud - Documents App
2013-06-30 20:53:42 +02:00
*
* @author Frank Karlitschek
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
2013-08-28 12:02:27 +02:00
namespace OCA\Documents;
2013-06-30 20:53:42 +02:00
class Storage {
public static function getDocuments() {
2013-09-03 17:53:05 +03:00
$list = array_filter(
\OCP\Files::searchByMime('application/vnd.oasis.opendocument.text'),
function($item){
//filter Deleted
if (strpos($item['path'], '_trashbin')===0){
return false;
}
return true;
}
);
2013-07-01 19:46:30 +03:00
return $list;
2013-06-30 20:53:42 +02:00
}
2013-09-07 19:49:48 +03:00
/**
* @brief Copy files to trash bin
* @param array
*
* This function is connected to the delete signal of OC_Filesystem
* to copy the file to the trash bin
*/
public static function onDelete($params) {
if ( \OCP\App::isEnabled('files_trashbin') ) {
$path = $params['path'];
Trashbin::move2trash($path);
}
}
2013-06-30 20:53:42 +02:00
}