mirror of
https://github.com/humhub/humhub.git
synced 2025-01-18 06:38:14 +01:00
58815dc5c6
- Renamed ContentTarget to contentContainer - Better ContentForm Handling - Cleanup Content Model
32 lines
918 B
PHP
32 lines
918 B
PHP
<?php
|
|
|
|
/**
|
|
* HumHub
|
|
* Copyright © 2014 The HumHub Project
|
|
*
|
|
* The texts of the GNU Affero General Public License with an additional
|
|
* permission and of our proprietary license can be found at and
|
|
* in the LICENSE file you have received along with this program.
|
|
*
|
|
* According to our dual licensing model, this program can be used either
|
|
* under the terms of the GNU Affero General Public License, version 3,
|
|
* or under a proprietary license.
|
|
*
|
|
* This program 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.
|
|
*/
|
|
|
|
/**
|
|
* @author Lucas Bartholemy <lucas@bartholemy.com>
|
|
* @package humhub.interfaces
|
|
* @since 0.5
|
|
*/
|
|
interface IContentContainer {
|
|
|
|
public function getProfileImage();
|
|
|
|
public function getUrl();
|
|
}
|