Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Data Model Questions /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

How to get the response of data


Go to End


1286 Views

Avatar
ajay

Community Member, 1 Post

17 March 2011 at 9:00am

hy i have created Property.php,Media.php file in the mysite/code folder now i wants to access the of Property class than how should ido?

i am trying it by http://localhost/ss/Property/ReadFile . but it redirects me to 404 error found page. what should i do?

here is the sample code

<?php
Class Property extends Page{
static $db = array(
'AGENT_REF'=>"Varchar(20)",
'ADDRESS_1'=>"Varchar(60)",
'ADDRESS_2'=>"Varchar(60)",
'ADDRESS_3'=>"Varchar(60)",
'ADDRESS_4'=>"Varchar(60)",
'PINCODE1'=>'Varchar(10)',
'PINCODE2'=>'Varchar(10)',
'FEATURE1'=>'Varchar(60)',

'PROP_SUB_ID'=>"Int", //comes from property subject table

);

}
/*------------Controller------------------------*/
class Property_Controller extends Page_Controller {
//public $blm_file_content="";
function ReadFile($filename){
$media_image_path="path to upload folder";
$filepath="file path";
if(file_exists($filepath)){
$tmpDir = dir($filepath);
$tmpDir->handle ;
while (false !== ($name = $tmpDir->read())) {
$path_parts = pathinfo($filepath.$name);
if(strtolower($path_parts['extension'])=="blm"){
echo "Here ";
}
}
$tmpDir->close();
}
}

}
?>

please help me.
sorry for my bad english