Browse Source

adap function php

Kevin 4 years ago
parent
commit
4bdbddc84d

+ 0 - 22
web/app/themes/la_mine/.travis.yml

@@ -1,22 +0,0 @@
-sudo: false
-
-dist: xenial
-
-services: mysql
-
-language: php
-
-php:
-    - 5.6.30
-    - 7.3
-
-env:
-    - WP_VERSION=latest WP_MULTISITE=0
-    - WP_VERSION=latest WP_MULTISITE=1
-
-before_script:
-    - bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
-    - composer install
-
-script:
-    - vendor/phpunit/phpunit/phpunit

+ 0 - 7
web/app/themes/la_mine/LICENSE

@@ -1,7 +0,0 @@
-Copyright (c) 2012-2013 Jared Novack
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 1 - 1
web/app/themes/la_mine/association.php

@@ -7,4 +7,4 @@ $context = Timber::context();
 
 $timber_post     = new Timber\Post();
 $context['post'] = $timber_post;
-Timber::render( array( 'page-' . $timber_post->post_name . '.twig', 'association.twig' ), $context );
+Timber::render('association.twig', $context );

+ 21 - 195
web/app/themes/la_mine/functions.php

@@ -1,206 +1,32 @@
 <?php
-/**
- * Timber starter-theme
- * https://github.com/timber/starter-theme
- *
- * @package  WordPress
- * @subpackage  Timber
- * @since   Timber 0.1
- */
+	include 'inc/function.php';
 
-/**
- * If you are installing Timber as a Composer dependency in your theme, you'll need this block
- * to load your dependencies and initialize Timber. If you are using Timber via the WordPress.org
- * plug-in, you can safely delete this block.
- */
-$composer_autoload = __DIR__ . '/vendor/autoload.php';
-if ( file_exists( $composer_autoload ) ) {
-	require_once $composer_autoload;
-	$timber = new Timber\Timber();
-}
+	// CUSTOM FUNCTION
 
+	// ADD OPTION PAGES
+	if( function_exists('acf_add_options_page') ) {
 
-if( function_exists('acf_add_options_page') ) {
+		acf_add_options_page(array(
+			'page_title' 	=> 'Information',
+			'menu_title'	=> 'Information',
+			'menu_slug' 	=> 'information',
+			'capability'	=> 'edit_posts',
+			'redirect'		=> false
+		));
 
-	acf_add_options_page(array(
-		'page_title' 	=> 'Information',
-		'menu_title'	=> 'Information',
-		'menu_slug' 	=> 'information',
-		'capability'	=> 'edit_posts',
-		'redirect'		=> false
-	));
+		acf_add_options_sub_page(array(
+			'page_title' 	=> 'Partenaires',
+			'menu_title'	=> 'Partenaires',
+			'parent_slug'	=> 'information',
+		));
 
-	acf_add_options_sub_page(array(
-		'page_title' 	=> 'Partenaires',
-		'menu_title'	=> 'Partenaires',
-		'parent_slug'	=> 'information',
-	));
-
-}
-
-add_filter( 'timber_context', 'options_footer'  );
-
-function options_footer( $context ) {
-    $context['options'] = get_fields('option');
-    return $context;
-}
-
-/**
- * This ensures that Timber is loaded and available as a PHP class.
- * If not, it gives an error message to help direct developers on where to activate
- */
-if ( ! class_exists( 'Timber' ) ) {
-
-	add_action(
-		'admin_notices',
-		function() {
-			echo '<div class="error"><p>Timber not activated. Make sure you activate the plugin in <a href="' . esc_url( admin_url( 'plugins.php#timber' ) ) . '">' . esc_url( admin_url( 'plugins.php' ) ) . '</a></p></div>';
-		}
-	);
-
-	add_filter(
-		'template_include',
-		function( $template ) {
-			return get_stylesheet_directory() . '/static/no-timber.html';
-		}
-	);
-	return;
-}
-
-/**
- * Sets the directories (inside your theme) to find .twig files
- */
-Timber::$dirname = array( 'templates', 'views' );
-
-/**
- * By default, Timber does NOT autoescape values. Want to enable Twig's autoescape?
- * No prob! Just set this value to true
- */
-Timber::$autoescape = false;
-
-
-// REMOVE EDITOR
- function remove_editor() {
-		remove_post_type_support(
-			'page', 'editor'
-		);
-		remove_post_type_support(
-			'post', 'editor'
-		);
-
-	};
-
-	add_action('admin_init', 'remove_editor');
-
-/**
- * We're going to configure our theme inside of a subclass of Timber\Site
- * You can move this to its own file and include here via php's include("MySite.php")
- */
-class StarterSite extends Timber\Site {
-	/** Add timber support. */
-	public function __construct() {
-		add_action( 'after_setup_theme', array( $this, 'theme_supports' ) );
-		add_filter( 'timber/context', array( $this, 'add_to_context' ) );
-		add_filter( 'timber/twig', array( $this, 'add_to_twig' ) );
-		add_action( 'init', array( $this, 'register_post_types' ) );
-		add_action( 'init', array( $this, 'register_taxonomies' ) );
-		parent::__construct();
-	}
-	/** This is where you can register custom post types. */
-	public function register_post_types() {
-
-	}
-	/** This is where you can register custom taxonomies. */
-	public function register_taxonomies() {
-
-	}
-
-	/** This is where you add some context
-	 *
-	 * @param string $context context['this'] Being the Twig's {{ this }}.
-	 */
-	public function add_to_context( $context ) {
-		$context['foo']   = 'bar';
-		$context['stuff'] = 'I am a value set in your functions.php file';
-		$context['notes'] = 'These values are available everytime you call Timber::context();';
-		$context['menu']  = new Timber\Menu();
-		$context['site']  = $this;
-		return $context;
-	}
-
-	public function theme_supports() {
-		// Add default posts and comments RSS feed links to head.
-		add_theme_support( 'automatic-feed-links' );
-
-		/*
-		 * Let WordPress manage the document title.
-		 * By adding theme support, we declare that this theme does not use a
-		 * hard-coded <title> tag in the document head, and expect WordPress to
-		 * provide it for us.
-		 */
-		add_theme_support( 'title-tag' );
-
-		/*
-		 * Enable support for Post Thumbnails on posts and pages.
-		 *
-		 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
-		 */
-		add_theme_support( 'post-thumbnails' );
-
-		/*
-		 * Switch default core markup for search form, comment form, and comments
-		 * to output valid HTML5.
-		 */
-		add_theme_support(
-			'html5',
-			array(
-				'comment-form',
-				'comment-list',
-				'gallery',
-				'caption',
-			)
-		);
-
-		/*
-		 * Enable support for Post Formats.
-		 *
-		 * See: https://codex.wordpress.org/Post_Formats
-		 */
-		add_theme_support(
-			'post-formats',
-			array(
-				'aside',
-				'image',
-				'video',
-				'quote',
-				'link',
-				'gallery',
-				'audio',
-			)
-		);
-
-		add_theme_support( 'menus' );
 	}
 
-	/** This Would return 'foo bar!'.
-	 *
-	 * @param string $text being 'foo', then returned 'foo bar!'.
-	 */
-	public function myfoo( $text ) {
-		$text .= ' bar!';
-		return $text;
-	}
+	add_filter( 'timber_context', 'options_footer'  );
 
-	/** This is where you can add your own functions to twig.
-	 *
-	 * @param string $twig get extension.
-	 */
-	public function add_to_twig( $twig ) {
-		$twig->addExtension( new Twig\Extension\StringLoaderExtension() );
-		$twig->addFilter( new Twig\TwigFilter( 'myfoo', array( $this, 'myfoo' ) ) );
-		return $twig;
+	function options_footer( $context ) {
+	    $context['options'] = get_fields('option');
+	    return $context;
 	}
 
-}
-
-new StarterSite();
+ ?>

+ 176 - 49
web/app/themes/la_mine/inc/function.php

@@ -1,54 +1,181 @@
 <?php
-function wpc_cpt() {
-
-	/* Property */
-	$labels = array(
-		'name'                => _x('Properties', 'Post Type General Name', 'la_mine'),
-		'singular_name'       => _x('Property', 'Post Type Singular Name', 'la_mine'),
-		'menu_name'           => __('Properties', 'la_mine'),
-		'name_admin_bar'      => __('Properties', 'la_mine'),
-		'parent_item_colon'   => __('Parent Item:', 'la_mine'),
-		'all_items'           => __('All Items', 'la_mine'),
-		'add_new_item'        => __('Add New Item', 'la_mine'),
-		'add_new'             => __('Add New', 'la_mine'),
-		'new_item'            => __('New Item', 'la_mine' ),
-		'edit_item'           => __('Edit Item', 'la_mine'),
-		'update_item'         => __('Update Item', 'la_mine'),
-		'view_item'           => __('View Item', 'la_mine'),
-		'search_items'        => __('Search Item', 'la_mine'),
-		'not_found'           => __('Not found', 'la_mine'),
-		'not_found_in_trash'  => __('Not found in Trash', 'la_mine'),
-	);
-	$rewrite = array(
-		'slug'                => _x('property', 'property', 'la_mine'),
-		'with_front'          => true,
-		'pages'               => true,
-		'feeds'               => false,
+/**
+ * Timber starter-theme
+ * https://github.com/timber/starter-theme
+ *
+ * @package  WordPress
+ * @subpackage  Timber
+ * @since   Timber 0.1
+ */
+
+/**
+ * If you are installing Timber as a Composer dependency in your theme, you'll need this block
+ * to load your dependencies and initialize Timber. If you are using Timber via the WordPress.org
+ * plug-in, you can safely delete this block.
+ */
+
+$composer_autoload = __DIR__ . '/vendor/autoload.php';
+if ( file_exists( $composer_autoload ) ) {
+	require_once $composer_autoload;
+	$timber = new Timber\Timber();
+}
+
+/**
+ * This ensures that Timber is loaded and available as a PHP class.
+ * If not, it gives an error message to help direct developers on where to activate
+ */
+if ( ! class_exists( 'Timber' ) ) {
+
+	add_action(
+		'admin_notices',
+		function() {
+			echo '<div class="error"><p>Timber not activated. Make sure you activate the plugin in <a href="' . esc_url( admin_url( 'plugins.php#timber' ) ) . '">' . esc_url( admin_url( 'plugins.php' ) ) . '</a></p></div>';
+		}
 	);
-	$args = array(
-		'label'               => __('property', 'la_mine'),
-		'description'         => __('Properties', 'la_mine'),
-		'labels'              => $labels,
-		'supports'            => array('title', 'editor', 'thumbnail', 'comments', 'revisions', 'custom-fields'),
-		'taxonomies'          => array('property_type'),
-		'hierarchical'        => false,
-		'public'              => true,
-		'show_ui'             => true,
-		'show_in_menu'        => true,
-		'menu_position'       => 5,
-		'menu_icon'           => 'dashicons-admin-home',
-		'show_in_admin_bar'   => true,
-		'show_in_nav_menus'   => true,
-		'can_export'          => true,
-		'has_archive'         => false,
-		'exclude_from_search' => false,
-		'publicly_queryable'  => true,
-		'query_var'           => 'property',
-		'rewrite'             => $rewrite,
-		'capability_type'     => 'page',
+
+	add_filter(
+		'template_include',
+		function( $template ) {
+			return get_stylesheet_directory() . '/static/no-timber.html';
+		}
 	);
-	register_post_type('property', $args);
+	return;
+}
+
+/**
+ * Sets the directories (inside your theme) to find .twig files
+ */
+Timber::$dirname = array( 'templates', 'views' );
+
+/**
+ * By default, Timber does NOT autoescape values. Want to enable Twig's autoescape?
+ * No prob! Just set this value to true
+ */
+Timber::$autoescape = false;
+
+
+// REMOVE EDITOR
+ function remove_editor() {
+		remove_post_type_support(
+			'page', 'editor'
+		);
+		remove_post_type_support(
+			'post', 'editor'
+		);
+
+	};
+
+	add_action('admin_init', 'remove_editor');
+
+/**
+ * We're going to configure our theme inside of a subclass of Timber\Site
+ * You can move this to its own file and include here via php's include("MySite.php")
+ */
+class StarterSite extends Timber\Site {
+	/** Add timber support. */
+	public function __construct() {
+		add_action( 'after_setup_theme', array( $this, 'theme_supports' ) );
+		add_filter( 'timber/context', array( $this, 'add_to_context' ) );
+		add_filter( 'timber/twig', array( $this, 'add_to_twig' ) );
+		add_action( 'init', array( $this, 'register_post_types' ) );
+		add_action( 'init', array( $this, 'register_taxonomies' ) );
+		parent::__construct();
+	}
+	/** This is where you can register custom post types. */
+	public function register_post_types() {
+
+	}
+	/** This is where you can register custom taxonomies. */
+	public function register_taxonomies() {
+
+	}
+
+	/** This is where you add some context
+	 *
+	 * @param string $context context['this'] Being the Twig's {{ this }}.
+	 */
+	public function add_to_context( $context ) {
+		$context['foo']   = 'bar';
+		$context['stuff'] = 'I am a value set in your functions.php file';
+		$context['notes'] = 'These values are available everytime you call Timber::context();';
+		$context['menu']  = new Timber\Menu();
+		$context['site']  = $this;
+		return $context;
+	}
+
+	public function theme_supports() {
+		// Add default posts and comments RSS feed links to head.
+		add_theme_support( 'automatic-feed-links' );
+
+		/*
+		 * Let WordPress manage the document title.
+		 * By adding theme support, we declare that this theme does not use a
+		 * hard-coded <title> tag in the document head, and expect WordPress to
+		 * provide it for us.
+		 */
+		add_theme_support( 'title-tag' );
+
+		/*
+		 * Enable support for Post Thumbnails on posts and pages.
+		 *
+		 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
+		 */
+		add_theme_support( 'post-thumbnails' );
+
+		/*
+		 * Switch default core markup for search form, comment form, and comments
+		 * to output valid HTML5.
+		 */
+		add_theme_support(
+			'html5',
+			array(
+				'comment-form',
+				'comment-list',
+				'gallery',
+				'caption',
+			)
+		);
+
+		/*
+		 * Enable support for Post Formats.
+		 *
+		 * See: https://codex.wordpress.org/Post_Formats
+		 */
+		add_theme_support(
+			'post-formats',
+			array(
+				'aside',
+				'image',
+				'video',
+				'quote',
+				'link',
+				'gallery',
+				'audio',
+			)
+		);
+
+		add_theme_support( 'menus' );
+	}
+
+	/** This Would return 'foo bar!'.
+	 *
+	 * @param string $text being 'foo', then returned 'foo bar!'.
+	 */
+	public function myfoo( $text ) {
+		$text .= ' bar!';
+		return $text;
+	}
+
+	/** This is where you can add your own functions to twig.
+	 *
+	 * @param string $twig get extension.
+	 */
+	public function add_to_twig( $twig ) {
+		$twig->addExtension( new Twig\Extension\StringLoaderExtension() );
+		$twig->addFilter( new Twig\TwigFilter( 'myfoo', array( $this, 'myfoo' ) ) );
+		return $twig;
+	}
+
 }
 
-add_action('init', 'wpc_cpt', 10);
-?>
+new StarterSite();

+ 1 - 1
web/app/themes/la_mine/index.php

@@ -18,6 +18,6 @@ $context['posts'] = new Timber\PostQuery();
 
 $templates        = array( 'base.twig' );
 if ( is_home() ) {
-	array_unshift( $templates, 'front-page.twig', 'accueil.twig' );
+	array_unshift(' accueil.twig' );
 }
 Timber::render( $templates, $context );

+ 1 - 1
web/app/themes/la_mine/la_benevole_zone.php

@@ -9,4 +9,4 @@ $context = Timber::context();
 $timber_post     = new Timber\Post();
 $context['post'] = $timber_post;
 
-Timber::render( array( 'page-' . $timber_post->post_name . '.twig', 'la_benevole_zone.twig' ), $context );
+Timber::render('la_benevole_zone.twig', $context );

+ 2 - 2
web/app/themes/la_mine/la_collecte.php

@@ -1,10 +1,10 @@
 <?php
 /**
- * template name: La collecte 
+ * template name: La collecte
  */
 
 $context = Timber::context();
 
 $timber_post     = new Timber\Post();
 $context['post'] = $timber_post;
-Timber::render( array( 'page-' . $timber_post->post_name . '.twig', 'la_collecte.twig' ), $context );
+Timber::render( 'la_collecte.twig', $context );

+ 1 - 1
web/app/themes/la_mine/les_projets.php

@@ -9,4 +9,4 @@ $timber_post     = new Timber\Post();
 $context['post'] = $timber_post;
 
 
-Timber::render( array( 'les_projets.twig' ), $context );
+Timber::render( 'les_projets.twig', $context );

+ 1 - 1
web/app/themes/la_mine/les_temps_forts.php

@@ -8,4 +8,4 @@ $context = Timber::context();
 $timber_post     = new Timber\Post();
 $context['post'] = $timber_post;
 
-Timber::render( array( 'page-' . $timber_post->post_name . '.twig', 'les_temps_forts.twig' ), $context );
+Timber::render( 'les_temps_forts.twig', $context );

+ 0 - 20
web/app/themes/la_mine/phpunit.xml

@@ -1,20 +0,0 @@
-<phpunit
-	bootstrap="tests/bootstrap.php"
-	backupGlobals="false"
-	colors="true"
-	convertErrorsToExceptions="true"
-	convertNoticesToExceptions="true"
-	convertWarningsToExceptions="true"
-	>
-	<testsuites>
-		<testsuite>
-			<directory prefix="test-" suffix=".php">./tests/</directory>
-		</testsuite>
-		<!-- The suite below HAS to be last to run,
-		as it includes a test that sets some const and would contaminate
-		the other tests as well. -->
-		<testsuite>
-			<directory prefix="testX-" suffix=".php">./tests/</directory>
-		</testsuite>
-	</testsuites>
-</phpunit>

+ 0 - 18
web/app/themes/la_mine/search.php

@@ -1,18 +0,0 @@
-<?php
-/**
- * Search results page
- *
- * Methods for TimberHelper can be found in the /lib sub-directory
- *
- * @package  WordPress
- * @subpackage  Timber
- * @since   Timber 0.1
- */
-
-$templates = array( 'search.twig', 'archive.twig', 'index.twig' );
-
-$context          = Timber::context();
-$context['title'] = 'Search results for ' . get_search_query();
-$context['posts'] = new Timber\PostQuery();
-
-Timber::render( $templates, $context );

+ 0 - 13
web/app/themes/la_mine/templates/search.twig

@@ -1,13 +0,0 @@
-{# see `archive.twig` for an alternative strategy of extending templates #}
-{% extends "base.twig" %}
-
-{% block content %}
-  {# see `base.twig:27` for where this block's content will be inserted #}
-  <div class="content-wrapper">
-    {% for post in posts %}
-      {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %}
-    {% endfor %}
-
-    {% include 'partial/pagination.twig' with { pagination: posts.pagination({show_all: false, mid_size: 3, end_size: 2}) } %}
-  </div>
-{% endblock %}

+ 1 - 1
web/app/themes/la_mine/templates/single.twig

@@ -21,5 +21,5 @@
 
 			</section>
 		</article>
-	</div><!-- /content-wrapper -->
+	</div>
 {% endblock %}