FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
HumHub-RSS-Reader/Module.php at main · StevenJoynt/HumHub-RSS-Reader · GitHub
StevenJoynt
/
HumHub-RSS-Reader
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
11
Code
Issues
10
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
HumHub-RSS-Reader
/
Module.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (27 loc) · 849 Bytes
Breadcrumbs
HumHub-RSS-Reader
/
Module.php
Copy path
File metadata and controls
35 lines (27 loc) · 849 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
namespace
sij
\
humhub
\
modules
\
rss
;
use
Yii
;
use
yii
\
helpers
\
Url
;
use
humhub
\
modules
\
content
\
components
\
ContentContainerActiveRecord
;
use
humhub
\
modules
\
space
\
models
\
Space
;
class
Module
extends
\
humhub
\
modules
\
content
\
components
\ContentContainerModule
{
public
function
getContentContainerTypes
()
{
return
[
Space::class,
];
}
public
function
getContentContainerConfigUrl
(
ContentContainerActiveRecord
$
container
)
{
return
$
container
->
createUrl
(
'
/rss/rss/config
'
);
}
public
function
getContentContainerName
(
ContentContainerActiveRecord
$
container
)
{
return
Yii::
t
(
'
RssModule.base
'
,
'
RSS
'
);
}
public
function
getContentContainerDescription
(
ContentContainerActiveRecord
$
container
)
{
return
Yii::
t
(
'
RssModule.base
'
,
'
RSS News Reader
'
);
}
}
Back
|
FazBrowse Home
|
New Git URL