Hi Friends,
Currently I develop a Facebook like Search Friend Functionality so I think it's may be some one help us.
I have created a common view on extension file,so you may not include all time view page.

Usage ΒΆ
1) First you can downloaded the extension.
2) copy the folder on protected/extension folder
3) install the extension on main.php file
'Search' => array(
//'class' => 'application.components.Search',
'class'=>'application.extensions.FBSearch.Search',
),
4) In your view file just make sure include the latest js and extension code
<?php
$baseUrl = Yii::app()->baseUrl;
$cs = Yii::app()->getClientScript();
$cs->registerScriptFile($baseUrl.'/js/jquery-1.10.1.min.js');
?>
<?php
$friends = array(
'Ankit Modi'=>'/images/1.jpg',
'Nitesh'=>'/images/2.jpg',
'parate Nitesh'=>'/images/3.jpg',
'parate Nitesdsdsh'=>'/images/ankit.jpg',
'parate sdsdsd'=>'/images/5.jpg',
);
$myInfo = Yii::app()->Search->CallView($friends);
?>
If we want to change the any code and layout you may change now on Search.php file.
Note:copy the all images on root folder and css include on css folder not in protected folder
User Contributed Notes
Leave a comment
If you have any questions, please ask in the forum instead.
Join the conversation to share a note.