Is there a link to a post, doc, etc that describes how to create a PHPEd template for custom extentions? That is, there is code coloring for builtins, common extentions. I use the sqlsrv_*, PDO(sqlsrv) and some custom extentions that dont come default. I'm resigned to do them myself, just not sure where to go to get started. This, in PHPEd shows the mssql_close, in sytax coloring for a function. The sqlsrv_close is treated as a UDF.
function Disconnect ( $conn ) {
if ( $conn ) {
if ( UseMSSQL () ) {
[color=blue]mssql_close[/color] ($conn);
}
else {
sqlsrv_close ($conn);
}
}
}
|