|
|
@@ -23,9 +23,9 @@ function register_all_one_offs() {
|
|
23
|
23
|
register_connections_for('object', ['object', 'exhibition']);
|
|
24
|
24
|
register_connections_for('artist', ['artist', 'object']);
|
|
25
|
25
|
register_connections_for('short', ['technique', 'short', 'object']);
|
|
26
|
|
- register_connections_for('guide', ['episode']);
|
|
|
26
|
+ // register_connections_for('guide', ['']);
|
|
27
|
27
|
register_connections_for('event', ['event', 'object']);
|
|
28
|
|
- register_connections_for('episode', ['object']);
|
|
|
28
|
+ register_connections_for('episode', ['object', 'episode']);
|
|
29
|
29
|
}
|
|
30
|
30
|
|
|
31
|
31
|
function all_connection_types() {
|
|
|
@@ -41,9 +41,6 @@ function all_connection_types() {
|
|
41
|
41
|
];
|
|
42
|
42
|
|
|
43
|
43
|
// Kick-off by assigning to object
|
|
44
|
|
- $object = array_shift($connection_stack);
|
|
45
|
|
- register_connections_for($object, $connection_stack);
|
|
46
|
|
-
|
|
47
|
44
|
$artist = array_shift($connection_stack);
|
|
48
|
45
|
register_connections_for($artist, $connection_stack);
|
|
49
|
46
|
|