first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
?>
<form method="post" novalidate="novalidate">
<input type="hidden" name="tab" value="roles"/>
<?php wp_nonce_field() ?>
<table class="form-table">
<tbody>
<?php
if ( is_array( $roles ) ) {
foreach ( $roles as $role ) {
do_action( 'brizy_settings_role_capability_row', $role );
}
}
?>
</tbody>
</table>
<p class="submit">
<button type="submit"
id="submit"
class="button button-primary"
><?php echo __( 'Save Changes', 'brizy' ); ?></button>
</p>
</form>