mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
40 lines
561 B
PHP
40 lines
561 B
PHP
<?php
|
|
|
|
namespace Kanboard\Model;
|
|
|
|
/**
|
|
* Project File Model
|
|
*
|
|
* @package model
|
|
* @author Frederic Guillot
|
|
*/
|
|
class ProjectFile extends File
|
|
{
|
|
/**
|
|
* SQL table name
|
|
*
|
|
* @var string
|
|
*/
|
|
const TABLE = 'project_has_files';
|
|
|
|
/**
|
|
* SQL foreign key
|
|
*
|
|
* @var string
|
|
*/
|
|
const FOREIGN_KEY = 'project_id';
|
|
|
|
/**
|
|
* Path prefix
|
|
*
|
|
* @var string
|
|
*/
|
|
const PATH_PREFIX = 'projects';
|
|
|
|
/**
|
|
* Events
|
|
*
|
|
* @var string
|
|
*/
|
|
const EVENT_CREATE = 'project.file.create';
|
|
}
|