123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <?php
- if (! file_exists($composer = __DIR__.'/vendor/autoload.php')) {
- wp_die(__('Error locating autoloader. Please run <code>composer install</code>.', 'sage'));
- }
- require $composer;
- if (! function_exists('\Roots\bootloader')) {
- wp_die(
- __('You need to install Acorn to use this theme.', 'sage'),
- '',
- [
- 'link_url' => 'https://roots.io/acorn/docs/installation/',
- 'link_text' => __('Acorn Docs: Installation', 'sage'),
- ]
- );
- }
- \Roots\bootloader()->boot();
- collect(['setup', 'filters'])
- ->each(function ($file) {
- if (! locate_template($file = "app/{$file}.php", true, true)) {
- wp_die(
-
- sprintf(__('Error locating <code>%s</code> for inclusion.', 'sage'), $file)
- );
- }
- });
-
- function cacher_bloc_head_admin() {
-
- echo '<style>.pp-version-notice-bold-purple { display: none; }</style>';
- echo '<style>.notice-warning { display: none; }</style>';
-
- }
- add_action('admin_head', 'cacher_bloc_head_admin');
-
- function cacher_bloc_foot_admin() {
-
- echo '<style>.pp-rating { display: none; }</style>';
- echo '<style>.pp-pressshack-logo { display: none; }</style>';
- echo '<style> footer nav{ display: none; }</style>';
- echo '<style> ul.subsubsub li:nth-child(1) a { display: none;}</style>';
-
- }
- add_action('admin_footer', 'cacher_bloc_foot_admin');
- function custom_filter_dropdown() {
- global $typenow;
- if ($typenow == 'post') {
- $selected = isset($_GET['custom_field_filter']) ? $_GET['custom_field_filter'] : '';
- $options = array(
- 'isMainPart' => __('isMainPart', 'textdomain'),
- 'isSubPart' => __('isSubPart', 'textdomain'),
- );
-
- echo '<select name="custom_field_filter">';
- echo '<option value="">' . __('All Custom Fields', 'textdomain') . '</option>';
- foreach ($options as $key => $label) {
- echo '<option value="' . $key . '"' . selected($selected, $key, false) . '>' . $label . '</option>';
- }
- echo '</select>';
- }
- }
-
- add_action('restrict_manage_posts', 'custom_filter_dropdown');
-
-
- function filter_by_custom_field($query) {
- global $pagenow;
- if (is_admin() && $pagenow == 'edit.php' && isset($_GET['custom_field_filter'])) {
- $custom_field_key = sanitize_text_field($_GET['custom_field_filter']);
- if (!empty($custom_field_key)) {
- $meta_query = array(
- array(
- 'key' => $custom_field_key,
- 'compare' => 'EXISTS',
- ),
- );
- $query->query_vars['meta_query'] = $meta_query;
- }
- }
- }
-
- add_filter('parse_query', 'filter_by_custom_field');
- add_action('wp', 'generate_csv');
- function generate_csv() {
- if ('csv' === (isset($_GET['format']) ? $_GET['format'] : null)) {
-
- $args = array(
- 'post_type' => 'post',
- 'posts_per_page' => -1,
- 'meta_key' => 'index',
- 'meta_type' => 'NUMERIC',
- 'orderby' => 'meta_value',
- 'order' => 'ASC'
- );
-
- $posts = get_posts($args);
-
- if (!empty($posts)) {
-
- $csvData = array();
-
-
- $csvData[] = array('Temps', 'Images', 'Voix Off et In', 'Bande Son', 'Écrits', 'Section');
-
-
- foreach ($posts as $post) {
- $post_content = wp_strip_all_tags($post->post_content);
- $content_array = explode("---", $post_content);
- $temps = $post->post_title;
- $images = isset($content_array[1]) ? $content_array[1] : '';
- $images = substr($images, 0, -15);
- $voixOffIn = isset($content_array[2]) ? $content_array[2] : '';
- $voixOffIn = substr($voixOffIn, 0, -10);
- $bandeson = isset($content_array[3]) ? $content_array[3] : '';
- $bandeson = substr($bandeson, 0, -8);
- $ecrits = isset($content_array[4]) ? $content_array[4] : '';
- if (get_post_meta($post->ID, 'isMainPart', true)) {
- $section = get_post_meta($post->ID, 'isMainPart', true);
- } elseif (get_post_meta($post->ID, 'isSubPart', true)) {
- $section = get_post_meta($post->ID, 'isSubPart', true);
- } else {
- $section = '';
- }
- $csvData[] = array(
- $temps,
- $images,
- $voixOffIn,
- $bandeson,
- $ecrits,
- $section,
- );
- }
-
- $csvFileName = 'partition_livre_d_image.csv';
-
- header('Content-Encoding: UTF-8');
- header('Content-Type: text/csv; charset=utf-8');
- header('Content-Disposition: attachment; filename=' . $csvFileName);
- echo "\xEF\xBB\xBF";
-
-
- $output = fopen('php://output', 'w');
- foreach ($csvData as $row) {
- fputcsv($output, $row);
- }
- fclose($output);
-
- exit;
- }
- }
- }
- function custom_admin_styles() {
- wp_enqueue_style('custom-admin', get_template_directory_uri() . '/resources/styles/admin_custom.css');
- wp_enqueue_script('custom-admin-script', get_template_directory_uri() . '/resources/scripts/custom-admin-script.js', array(), null, true);
- }
- add_action('admin_enqueue_scripts', 'custom_admin_styles');
- function restrict_revisions_by_author($query) {
- global $current_user;
-
-
- if (is_user_logged_in()) {
- get_currentuserinfo();
- $author_id = $current_user->ID;
-
-
- if (isset($query->query_vars['post_type']) && $query->query_vars['post_type'] == 'revision') {
- $query->set('author', $author_id);
- }
- }
- }
- add_action('pre_get_posts', 'restrict_revisions_by_author');
- function customize_editor_for_editor_role() {
- if (current_user_can('revisor')) {
- wp_enqueue_script('custom-editor-script', get_template_directory_uri() . '/resources/scripts/custom-editor-script.js', array(), null, true);
- wp_enqueue_style('custom-editor-style', get_template_directory_uri() . '/resources/styles/custom-editor-style.css');
-
-
- $current_user = wp_get_current_user();
- $author_id = $current_user->ID;
- $revisionary_page = admin_url('admin.php?page=revisionary-q&author=' . $author_id);
-
- $page_id = 13940;
- $page_content = get_post_field('post_content', $page_id);
- $website_url = site_url();
-
-
- wp_localize_script('custom-editor-script', 'pageContentData', array(
- 'content' => $page_content,
- 'websiteUrl' => $website_url,
- 'myRevisionsUrl' => $revisionary_page,
- ));
- }
- }
- add_action('admin_enqueue_scripts', 'customize_editor_for_editor_role');
- function remove_roles() {
- remove_role('author');
- remove_role('editor');
- remove_role('subscriber');
- remove_role('contributor');
- }
- add_action('init', 'remove_roles');
-
- function redirect_single_posts_to_homepage() {
- if (is_single() && isset($_GET['p'])) {
- wp_redirect(home_url(), 301);
- exit();
- }
- }
- add_action('template_redirect', 'redirect_single_posts_to_homepage');
- function log_posts_with_user_revisions() {
- $current_user = wp_get_current_user();
- if (current_user_can('revisor')) {
- if ($current_user instanceof WP_User) {
- $current_user_id = $current_user->ID;
- $args = array(
- 'post_type' => 'revision',
- 'post_status' => 'inherit',
- 'posts_per_page' => -1,
- 'author' => $current_user_id,
- 'fields' => 'ids',
- );
-
- $all_posts = get_posts($args);
- $parents_posts_ids = array();
- $revisions_dates = array();
-
- foreach ($all_posts as $post_id) {
- $current_revision_date = array();
- $current_revision_date[] = get_post(wp_get_post_parent_id($post_id))->post_title;
- $current_revision_date[] = get_post($post_id)->post_date;
- $revisions_dates[] = $current_revision_date;
- $parents_posts_ids[] = wp_get_post_parent_id($post_id);
- }
- $parents_posts_ids = array_unique($parents_posts_ids);
- $history_posts_titles = array();
- $history_posts_contents = array();
- foreach ($parents_posts_ids as $parent_post_id) {
- $history_posts_titles[] = get_post($parent_post_id)->post_title;
- $history_posts_contents[] = strip_tags(get_post($parent_post_id)->post_content);
- }
-
- wp_enqueue_script('contribution-history-script', get_template_directory_uri() . '/resources/scripts/contribution_history.js', array('jquery'), '1.0', true);
-
- wp_localize_script('contribution-history-script', 'historyData', array(
- 'titles' => $history_posts_titles,
- 'contents' => $history_posts_contents,
- 'dates' => $revisions_dates
- ));
- }
- }
- }
- add_action('admin_enqueue_scripts', 'log_posts_with_user_revisions');
- function custom_logout_redirect() {
- wp_redirect( home_url() );
- exit();
- }
- add_action('wp_logout','custom_logout_redirect');
-
-
|