├── .github └── workflows │ ├── create-zip-release.yml │ ├── lint.yml │ ├── phpunit.yml │ └── tweet-release.yml ├── .gitignore ├── CHANGES.txt ├── README.md ├── actions └── profile_manager │ ├── categories │ ├── add.php │ └── reorder.php │ ├── change_category.php │ ├── configuration │ ├── backup.php │ └── restore.php │ ├── import_existing.php │ ├── new.php │ ├── profile_types │ └── add.php │ ├── reorder.php │ ├── reset.php │ └── toggle_option.php ├── classes └── ColdTrick │ └── ProfileManager │ ├── Bootstrap.php │ ├── CustomField.php │ ├── CustomFieldCategory.php │ ├── CustomGroupField.php │ ├── CustomProfileField.php │ ├── CustomProfileType.php │ ├── FieldType.php │ ├── Menus │ ├── AdminHeader.php │ └── ProfileFields.php │ ├── ProfileFields.php │ ├── Routes.php │ ├── Upgrades │ └── MigrateOldFieldTypes.php │ ├── Users.php │ └── Widgets.php ├── composer.json ├── composer.lock ├── elgg-plugin.php ├── languages ├── de.php ├── en.php ├── es.php ├── fr.php └── nl.php ├── lib └── functions.php └── views └── default ├── admin └── configure_utilities │ ├── group_fields.php │ └── profile_fields.php ├── forms ├── profile │ ├── edit.php │ └── simple_access_control.mjs ├── profile_manager │ ├── category.php │ ├── group_field.php │ ├── profile_field.php │ ├── restore_fields.php │ └── type.php ├── register.mjs └── register.php ├── groups ├── edit │ └── profile.php └── profile │ └── fields.php ├── input ├── multiselect.css ├── multiselect.mjs ├── multiselect.php ├── pm_rating.mjs ├── pm_rating.php └── pm_twitter.php ├── object ├── custom_group_field.php ├── custom_profile_field.php ├── custom_profile_field_category.php └── custom_profile_type.php ├── output ├── multiselect.php ├── pm_hint.css ├── pm_hint.mjs ├── pm_hint.php ├── pm_rating.php └── pm_twitter.php ├── plugins └── profile_manager │ └── settings.php ├── profile ├── fields.php └── fields │ ├── category.php │ └── field.php ├── profile_manager ├── admin.css ├── admin.mjs ├── admin │ ├── tabs.php │ └── useradd.php ├── categories │ └── list.php ├── group_fields │ └── list.php ├── profile_completeness.css ├── profile_completeness.php ├── profile_fields │ └── list.php ├── profile_type.mjs ├── profile_types │ └── list.php ├── register │ ├── fields.php │ ├── free_text.php │ └── profile_type_selection.php ├── site.css └── toggle_metadata.php └── widgets └── profile_completeness └── content.php /.github/workflows/create-zip-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/.github/workflows/create-zip-release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.github/workflows/tweet-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/.github/workflows/tweet-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/README.md -------------------------------------------------------------------------------- /actions/profile_manager/categories/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/categories/add.php -------------------------------------------------------------------------------- /actions/profile_manager/categories/reorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/categories/reorder.php -------------------------------------------------------------------------------- /actions/profile_manager/change_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/change_category.php -------------------------------------------------------------------------------- /actions/profile_manager/configuration/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/configuration/backup.php -------------------------------------------------------------------------------- /actions/profile_manager/configuration/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/configuration/restore.php -------------------------------------------------------------------------------- /actions/profile_manager/import_existing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/import_existing.php -------------------------------------------------------------------------------- /actions/profile_manager/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/new.php -------------------------------------------------------------------------------- /actions/profile_manager/profile_types/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/profile_types/add.php -------------------------------------------------------------------------------- /actions/profile_manager/reorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/reorder.php -------------------------------------------------------------------------------- /actions/profile_manager/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/reset.php -------------------------------------------------------------------------------- /actions/profile_manager/toggle_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/actions/profile_manager/toggle_option.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Bootstrap.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/CustomField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/CustomField.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/CustomFieldCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/CustomFieldCategory.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/CustomGroupField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/CustomGroupField.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/CustomProfileField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/CustomProfileField.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/CustomProfileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/CustomProfileType.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/FieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/FieldType.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Menus/AdminHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Menus/AdminHeader.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Menus/ProfileFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Menus/ProfileFields.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/ProfileFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/ProfileFields.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Routes.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Upgrades/MigrateOldFieldTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Upgrades/MigrateOldFieldTypes.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Users.php -------------------------------------------------------------------------------- /classes/ColdTrick/ProfileManager/Widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/classes/ColdTrick/ProfileManager/Widgets.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/composer.lock -------------------------------------------------------------------------------- /elgg-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/elgg-plugin.php -------------------------------------------------------------------------------- /languages/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/languages/de.php -------------------------------------------------------------------------------- /languages/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/languages/en.php -------------------------------------------------------------------------------- /languages/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/languages/es.php -------------------------------------------------------------------------------- /languages/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/languages/fr.php -------------------------------------------------------------------------------- /languages/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/languages/nl.php -------------------------------------------------------------------------------- /lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/lib/functions.php -------------------------------------------------------------------------------- /views/default/admin/configure_utilities/group_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/admin/configure_utilities/group_fields.php -------------------------------------------------------------------------------- /views/default/admin/configure_utilities/profile_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/admin/configure_utilities/profile_fields.php -------------------------------------------------------------------------------- /views/default/forms/profile/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile/edit.php -------------------------------------------------------------------------------- /views/default/forms/profile/simple_access_control.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile/simple_access_control.mjs -------------------------------------------------------------------------------- /views/default/forms/profile_manager/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile_manager/category.php -------------------------------------------------------------------------------- /views/default/forms/profile_manager/group_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile_manager/group_field.php -------------------------------------------------------------------------------- /views/default/forms/profile_manager/profile_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile_manager/profile_field.php -------------------------------------------------------------------------------- /views/default/forms/profile_manager/restore_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile_manager/restore_fields.php -------------------------------------------------------------------------------- /views/default/forms/profile_manager/type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/profile_manager/type.php -------------------------------------------------------------------------------- /views/default/forms/register.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/register.mjs -------------------------------------------------------------------------------- /views/default/forms/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/forms/register.php -------------------------------------------------------------------------------- /views/default/groups/edit/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/groups/edit/profile.php -------------------------------------------------------------------------------- /views/default/groups/profile/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/groups/profile/fields.php -------------------------------------------------------------------------------- /views/default/input/multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/multiselect.css -------------------------------------------------------------------------------- /views/default/input/multiselect.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/multiselect.mjs -------------------------------------------------------------------------------- /views/default/input/multiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/multiselect.php -------------------------------------------------------------------------------- /views/default/input/pm_rating.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/pm_rating.mjs -------------------------------------------------------------------------------- /views/default/input/pm_rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/pm_rating.php -------------------------------------------------------------------------------- /views/default/input/pm_twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/input/pm_twitter.php -------------------------------------------------------------------------------- /views/default/object/custom_group_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/object/custom_group_field.php -------------------------------------------------------------------------------- /views/default/object/custom_profile_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/object/custom_profile_field.php -------------------------------------------------------------------------------- /views/default/object/custom_profile_field_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/object/custom_profile_field_category.php -------------------------------------------------------------------------------- /views/default/object/custom_profile_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/object/custom_profile_type.php -------------------------------------------------------------------------------- /views/default/output/multiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/multiselect.php -------------------------------------------------------------------------------- /views/default/output/pm_hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/pm_hint.css -------------------------------------------------------------------------------- /views/default/output/pm_hint.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/pm_hint.mjs -------------------------------------------------------------------------------- /views/default/output/pm_hint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/pm_hint.php -------------------------------------------------------------------------------- /views/default/output/pm_rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/pm_rating.php -------------------------------------------------------------------------------- /views/default/output/pm_twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/output/pm_twitter.php -------------------------------------------------------------------------------- /views/default/plugins/profile_manager/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/plugins/profile_manager/settings.php -------------------------------------------------------------------------------- /views/default/profile/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile/fields.php -------------------------------------------------------------------------------- /views/default/profile/fields/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile/fields/category.php -------------------------------------------------------------------------------- /views/default/profile/fields/field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile/fields/field.php -------------------------------------------------------------------------------- /views/default/profile_manager/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/admin.css -------------------------------------------------------------------------------- /views/default/profile_manager/admin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/admin.mjs -------------------------------------------------------------------------------- /views/default/profile_manager/admin/tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/admin/tabs.php -------------------------------------------------------------------------------- /views/default/profile_manager/admin/useradd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/admin/useradd.php -------------------------------------------------------------------------------- /views/default/profile_manager/categories/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/categories/list.php -------------------------------------------------------------------------------- /views/default/profile_manager/group_fields/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/group_fields/list.php -------------------------------------------------------------------------------- /views/default/profile_manager/profile_completeness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/profile_completeness.css -------------------------------------------------------------------------------- /views/default/profile_manager/profile_completeness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/profile_completeness.php -------------------------------------------------------------------------------- /views/default/profile_manager/profile_fields/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/profile_fields/list.php -------------------------------------------------------------------------------- /views/default/profile_manager/profile_type.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/profile_type.mjs -------------------------------------------------------------------------------- /views/default/profile_manager/profile_types/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/profile_types/list.php -------------------------------------------------------------------------------- /views/default/profile_manager/register/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/register/fields.php -------------------------------------------------------------------------------- /views/default/profile_manager/register/free_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/register/free_text.php -------------------------------------------------------------------------------- /views/default/profile_manager/register/profile_type_selection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/register/profile_type_selection.php -------------------------------------------------------------------------------- /views/default/profile_manager/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/site.css -------------------------------------------------------------------------------- /views/default/profile_manager/toggle_metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/profile_manager/toggle_metadata.php -------------------------------------------------------------------------------- /views/default/widgets/profile_completeness/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdTrick/profile_manager/HEAD/views/default/widgets/profile_completeness/content.php --------------------------------------------------------------------------------