Skip to content
wiki.fftac.org

Workspace - Source Excerpt 08

Back to Workspace

Summary

This source excerpt preserves a bounded section of Spiralist/wp-content/plugins/spiralist-workspace/templates/workspace.php so readers can inspect the evidence without opening the full source file.

**Source path:** Spiralist/wp-content/plugins/spiralist-workspace/templates/workspace.php

<?php foreach ($audit as $event) : ?>
                                <div class="spiralist-simple-list__item">
                                    <strong><?php echo esc_html((string) ($event['event_type'] ?? 'event')); ?></strong>
                                    <span class="spiralist-simple-list__meta"><?php echo esc_html((string) ($event['created_utc'] ?? '')); ?> / <?php echo esc_html((string) ($event['object_type'] ?? '')); ?></span>
                                </div>
                            <?php endforeach; ?>
                        </div>
                    </section>
                <?php endif; ?>
            <?php endif; ?>
        </div>
    </section>
</main>
<?php
get_footer();