├── index.php ├── public ├── partials │ ├── speakers-page-content.php │ ├── schedule-page.php │ ├── past-events-page.php │ ├── speakers-page.php │ ├── events-listing-page.php │ ├── code-of-conduct-page.php │ ├── wpfaevent-public-display.php │ └── wpfaevent-landing-template.php ├── index.php ├── css │ └── wpfaevent-public.css ├── js │ └── wpfaevent-public.js └── class-wpfaevent-public.php ├── admin ├── index.php ├── css │ └── wpfaevent-admin.css ├── partials │ └── wpfaevent-admin-display.php ├── js │ └── wpfaevent-admin.js └── class-wpfaevent-admin.php ├── includes ├── index.php ├── wpfaevent-public.css ├── class-wpfaevent-activator.php ├── class-wpfaevent-deactivator.php ├── class-wpfaevent-i18n.php ├── class-wpfaevent-uninstaller.php ├── class-wpfaevent-landing.php ├── class-wpfaevent.php ├── class-wpfaevent-loader.php └── class-wpfa-cli.php ├── assets ├── images │ └── logo.png └── data │ └── minimal.json ├── .gitignore ├── .github └── workflows │ └── phpcs.yml ├── phpcs.xml ├── readme.txt ├── uninstall.php ├── wpfaevent.php ├── README.md └── LICENSE /index.php: -------------------------------------------------------------------------------- 1 | '; 9 | } 10 | -------------------------------------------------------------------------------- /public/partials/past-events-page.php: -------------------------------------------------------------------------------- 1 | '; 9 | } 10 | -------------------------------------------------------------------------------- /public/partials/speakers-page.php: -------------------------------------------------------------------------------- 1 | '; 9 | } 10 | -------------------------------------------------------------------------------- /public/partials/events-listing-page.php: -------------------------------------------------------------------------------- 1 | '; 9 | } 10 | -------------------------------------------------------------------------------- /public/partials/code-of-conduct-page.php: -------------------------------------------------------------------------------- 1 | '; 9 | } 10 | -------------------------------------------------------------------------------- /admin/partials/wpfaevent-admin-display.php: -------------------------------------------------------------------------------- 1 |
Admin template not found.
'; 9 | } 10 | -------------------------------------------------------------------------------- /public/partials/wpfaevent-public-display.php: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.github/workflows/phpcs.yml: -------------------------------------------------------------------------------- 1 | name: PHPCS 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | pull_request: 7 | branches: [ main ] 8 | 9 | jobs: 10 | phpcs: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - name: Setup PHP 15 | uses: shivammathur/setup-php@v2 16 | with: 17 | php-version: '8.0' 18 | - name: Install composer deps 19 | run: composer require --dev squizlabs/php_codesniffer 20 | - name: Run PHPCS 21 | run: vendor/bin/phpcs --standard=WordPress . || true 22 | -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 |