This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vendor\Bundle\ProjectBundle\Core\Search\Solr\Query\Content\FacetBuilder; | |
use eZ\Publish\API\Repository\Values\Content\Query\FacetBuilder; | |
class SuggestionFacetBuilder extends FacetBuilder | |
{ | |
public $prefix; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Composer\Package\Version\VersionParser; | |
require 'vendor/autoload.php'; | |
$parser = new VersionParser(); | |
$constraint = $parser->parseConstraints('2013.09.*'); | |
$single = $parser->parseConstraints('v2013.09.0'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>JQuery - FadeIn() et FadeOut() - Exemple</title> | |
<script type="text/javascript" src="jquery-1.3.1.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$("#boutonFadeOut").click(function () { | |
$("#contenu").fadeOut(); | |
}); | |
$("#boutonFadeIn").click(function () { |