Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
e6a173c0
Commit
e6a173c0
authored
Aug 06, 2010
by
Richard Mansfield
Browse files
Leap2a export of collections
Signed-off-by:
Richard Mansfield
<
richardm@catalyst.net.nz
>
parent
1e4a3a7c
Changes
2
Hide whitespace changes
Inline
Side-by-side
htdocs/export/leap/lib.php
View file @
e6a173c0
...
...
@@ -127,6 +127,7 @@ class PluginExportLeap extends PluginExport {
$this
->
export_header
();
$this
->
setup_links
();
$this
->
notify_progress_callback
(
10
,
get_string
(
'exportingviews'
,
'export'
));
$this
->
export_collections
();
$this
->
export_views
();
$this
->
notify_progress_callback
(
50
,
get_string
(
'exportingartefacts'
,
'export'
));
$this
->
export_artefacts
();
...
...
@@ -203,6 +204,44 @@ class PluginExportLeap extends PluginExport {
$this
->
xml
.
=
$this
->
smarty
->
fetch
(
'export:leap:header.tpl'
);
}
/**
* Export the collections
*/
private
function
export_collections
()
{
foreach
(
$this
->
collections
as
$id
=>
$collection
)
{
$this
->
smarty
->
assign
(
'title'
,
$collection
->
get
(
'name'
));
$this
->
smarty
->
assign
(
'id'
,
'portfolio:collection'
.
$id
);
$this
->
smarty
->
assign
(
'updated'
,
self
::
format_rfc3339_date
(
strtotime
(
$collection
->
get
(
'mtime'
))));
$this
->
smarty
->
assign
(
'created'
,
self
::
format_rfc3339_date
(
strtotime
(
$collection
->
get
(
'ctime'
))));
$this
->
smarty
->
assign
(
'summarytype'
,
'text'
);
$this
->
smarty
->
assign
(
'summary'
,
$collection
->
get
(
'description'
));
$this
->
smarty
->
assign
(
'contenttype'
,
'text'
);
$this
->
smarty
->
assign
(
'content'
,
$collection
->
get
(
'description'
));
$this
->
smarty
->
assign
(
'leaptype'
,
'selection'
);
$this
->
smarty
->
assign
(
'categories'
,
array
(
array
(
'scheme'
=>
'selection_type'
,
'term'
=>
'Website'
,
)
));
$links
=
array
();
if
(
!
empty
(
$this
->
links
->
collectionview
[
$id
]))
{
foreach
(
array_keys
(
$this
->
links
->
collectionview
[
$id
])
as
$viewid
)
{
$links
[]
=
(
object
)
array
(
'type'
=>
'has_part'
,
'id'
=>
'portfolio:view'
.
$viewid
,
);
}
}
$this
->
smarty
->
assign
(
'links'
,
$links
);
$this
->
xml
.
=
$this
->
smarty
->
fetch
(
"export:leap:entry.tpl"
);
}
}
/**
* Export the views
*/
...
...
@@ -264,6 +303,21 @@ class PluginExportLeap extends PluginExport {
$viewlist
=
join
(
','
,
array_keys
(
$this
->
views
));
$artefactlist
=
join
(
','
,
array_keys
(
$this
->
artefacts
));
// Views in collections
if
(
$this
->
collections
)
{
$collectionlist
=
join
(
','
,
array_keys
(
$this
->
collections
));
$records
=
get_records_select_array
(
'collection_view'
,
"view IN (
$viewlist
) AND collection IN (
$collectionlist
)"
);
if
(
$records
)
{
foreach
(
$records
as
&
$r
)
{
$this
->
links
->
collectionview
[
$r
->
collection
][
$r
->
view
]
=
1
;
$this
->
links
->
viewcollection
[
$r
->
view
][
$r
->
collection
]
=
1
;
}
}
}
// Artefacts directly in views
$records
=
get_records_select_array
(
'view_artefact'
,
...
...
@@ -400,6 +454,15 @@ class PluginExportLeap extends PluginExport {
private
function
get_links_for_view
(
$viewid
)
{
$links
=
array
();
if
(
!
empty
(
$this
->
links
->
viewcollection
[
$viewid
]))
{
foreach
(
array_keys
(
$this
->
links
->
viewcollection
[
$viewid
])
as
$collectionid
)
{
$links
[]
=
(
object
)
array
(
'type'
=>
'is_part_of'
,
'id'
=>
'portfolio:collection'
.
$collectionid
,
);
}
}
if
(
!
empty
(
$this
->
links
->
viewcontents
[
$viewid
]))
{
foreach
(
array_keys
(
$this
->
links
->
viewcontents
[
$viewid
])
as
$artefactid
)
{
$links
[]
=
(
object
)
array
(
...
...
htdocs/export/lib.php
View file @
e6a173c0
...
...
@@ -263,6 +263,22 @@ abstract class PluginExport extends Plugin {
}
}
$this
->
collections
=
array
();
$collections
=
get_records_sql_assoc
(
'
SELECT * FROM {collection} WHERE id IN (
SELECT collection
FROM {collection_view}
WHERE view IN ('
.
join
(
','
,
array_keys
(
$this
->
views
))
.
')
)'
,
array
()
);
if
(
$collections
)
{
require_once
(
'collection.php'
);
foreach
(
$collections
as
&
$c
)
{
$this
->
collections
[
$c
->
id
]
=
new
Collection
(
0
,
$c
);
}
}
// Now set up the temporary export directories
$this
->
exportdir
=
get_config
(
'dataroot'
)
.
'export/'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment